Skip to content

Commit d30ba53

Browse files
authored
Merge pull request #110 from cheyang/helm-chart-fluid-1.1.0-alpha.2
Add helm-chart-fluid-1.1.0-alpha.2
2 parents bfffc84 + c8a39a4 commit d30ba53

File tree

6 files changed

+17
-4
lines changed

6 files changed

+17
-4
lines changed

charts/fluid/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ type: application
1414

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

1919
# This is the version number of the application being deployed. This version number should be
2020
# incremented each time you make changes to the application.
21-
appVersion: 1.1.0-bfd548f
21+
appVersion: 1.1.0-2abd6b3
2222
home: https://github.com/fluid-cloudnative/fluid
2323
keywords:
2424
- category:data

charts/fluid/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ image:
1414
# Default registry, namespace and version tag for images managed by fluid
1515
imagePrefix: &defaultImagePrefix fluidcloudnative
1616
# imagePrefix: &defaultImagePrefix registry.aliyuncs.com/fluid
17-
version: &defaultVersion v1.1.0-bfd548f
17+
version: &defaultVersion v1.1.0-2abd6b3
1818

1919
crdUpgrade:
2020
enabled: true

test/gha-e2e/jindo/job.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ spec:
1010
containers:
1111
- name: busybox
1212
image: busybox
13+
resources:
14+
limits:
15+
ephemeral-storage: "5Gi"
1316
command: ["/bin/sh"]
1417
args:
1518
- -c

test/gha-e2e/jindo/minio.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@ spec:
3636
- name: minio
3737
# Pulls the default Minio image from Docker Hub
3838
image: minio/minio
39+
resources:
40+
limits:
41+
memory: "512Mi"
3942
args:
4043
- server
4144
- /data

test/gha-e2e/juicefs/minio.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ spec:
3232
- name: minio
3333
# Pulls the default Minio image from Docker Hub
3434
image: minio/minio
35+
resources:
36+
limits:
37+
memory: "512Mi"
3538
args:
3639
- server
3740
- /data

test/gha-e2e/juicefs/read_job.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,11 @@ spec:
1616
containers:
1717
- name: read-job
1818
image: busybox
19-
command: ['sh']
19+
resources:
20+
limits:
21+
memory: "512Mi"
22+
ephemeral-storage: "5Gi"
23+
command: ['sh']
2024
args:
2125
- -c
2226
- set -ex; test -n "$(cat /data/foo/bar)"

0 commit comments

Comments
 (0)