Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions charts/fluid/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ type: application

# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
version: 1.1.0-alpha.2
version: 1.1.0-alpha.4

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application.
appVersion: 1.1.0-2abd6b3
appVersion: 1.1.0-6421d480
home: https://github.com/fluid-cloudnative/fluid
keywords:
- category:data
Expand Down
2 changes: 1 addition & 1 deletion charts/fluid/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ image:
# Default registry, namespace and version tag for images managed by fluid
imagePrefix: &defaultImagePrefix fluidcloudnative
# imagePrefix: &defaultImagePrefix registry.aliyuncs.com/fluid
version: &defaultVersion v1.1.0-2abd6b3
version: &defaultVersion v1.1.0-6421d480

crdUpgrade:
enabled: true
Expand Down
3 changes: 3 additions & 0 deletions test/gha-e2e/juicefs/redis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ spec:
- name: redis
# Pulls the default Redis image from Docker Hub
image: redis
resources:
limits:
memory: 512Mi
ports:
- containerPort: 6379
hostPort: 6379
Expand Down
4 changes: 4 additions & 0 deletions test/gha-e2e/juicefs/write_job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ spec:
containers:
- name: write-job
image: busybox
resources:
limits:
ephemeral-storage: "5Gi"
memory: "512Mi"
command: ['sh', '-c', 'mkdir /data/foo && echo helloworld > /data/foo/bar']
volumeMounts:
- name: data-vol
Expand Down
Loading