File tree Expand file tree Collapse file tree 6 files changed +49
-15
lines changed
charts/hwameistor-operator Expand file tree Collapse file tree 6 files changed +49
-15
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ export USE_OPENSOURCE_CHART=true
4
4
export REPO_URL=http://hwameistor.io/hwameistor-operator
5
5
export REPO_NAME=hwameistor-operator
6
6
export CHART_NAME=hwameistor-operator
7
- export VERSION=v0.14.1
7
+ export VERSION=v0.14.4
8
8
9
9
# push to daocloud repo
10
10
export DAOCLOUD_REPO_PROJECT=addon
Original file line number Diff line number Diff line change 24
24
- " {{ .global.hwameistorImageRegistry }}/{{ .ui.imageRepository }}:{{ .ui.tag }}"
25
25
- " {{ .global.hwameistorImageRegistry }}/{{ .operator.imageRepository }}:{{ .operator.tag }}"
26
26
- " {{ .global.hwameistorImageRegistry }}/{{ .preHookJob.imageRepository }}:{{ .preHookJob.tag }}"
27
- - " {{ .global.hwameistorImageRegistry }}/{{ .ha.imageRepoOwner }}/drbd9-shipper:{{ .ha.drbdVersion }}_v0.3.6"
28
- - " {{ .global.hwameistorImageRegistry }}/{{ .ha.imageRepoOwner }}/drbd9-rhel7:{{ .ha.drbdVersion }}"
29
- - " {{ .global.hwameistorImageRegistry }}/{{ .ha.imageRepoOwner }}/drbd9-rhel8:{{ .ha.drbdVersion }}"
30
- - " {{ .global.hwameistorImageRegistry }}/{{ .ha.imageRepoOwner }}/drbd9-rhel9:{{ .ha.drbdVersion }}"
31
- - " {{ .global.hwameistorImageRegistry }}/{{ .ha.imageRepoOwner }}/drbd9-kylin10:{{ .ha.drbdVersion }}"
32
- - " {{ .global.hwameistorImageRegistry }}/{{ .ha.imageRepoOwner }}/drbd9-bionic:{{ .ha.drbdVersion }}"
33
- - " {{ .global.hwameistorImageRegistry }}/{{ .ha.imageRepoOwner }}/drbd9-focal:{{ .ha.drbdVersion }}"
27
+ - " {{ .global.hwameistorImageRegistry }}/{{ .ha.imageRepository }}:{{ .ha.drbdVersion }}_v0.4.0"
28
+ - " {{ .global.hwameistorImageRegistry }}/{{ .drbdRhel7.imageRepository }}:{{ .ha.drbdVersion }}"
29
+ - " {{ .global.hwameistorImageRegistry }}/{{ .drbdRhel8.imageRepository }}:{{ .ha.drbdVersion }}"
30
+ - " {{ .global.hwameistorImageRegistry }}/{{ .drbdRhel9.imageRepository }}:{{ .ha.drbdVersion }}"
31
+ - " {{ .global.hwameistorImageRegistry }}/{{ .drbdKylin10.imageRepository }}:{{ .ha.drbdVersion }}"
32
+ - " {{ .global.hwameistorImageRegistry }}/{{ .drbdBionic.imageRepository }}:{{ .ha.drbdVersion }}"
33
+ - " {{ .global.hwameistorImageRegistry }}/{{ .drbdFocal.imageRepository }}:{{ .ha.drbdVersion }}"
34
+
34
35
# - "{{ .global.hwameistorImageRegistry }}/{{ .ha.imageRepoOwner }}/drbd9-jammy:v9.1.11"
Original file line number Diff line number Diff line change 1
1
apiVersion : v2
2
- appVersion : v0.14.1
2
+ appVersion : v0.14.4
3
3
description : A Helm chart for Hwameistor Operator
4
4
icon : https://hwameistor.io/img/logo.svg
5
5
name : hwameistor-operator
6
6
type : application
7
- version : v0.14.1
7
+ version : v0.14.4
8
8
keywords :
9
9
- storage
10
10
- local
Original file line number Diff line number Diff line change @@ -1946,6 +1946,18 @@ spec:
1946
1946
type: array
1947
1947
drbd:
1948
1948
properties:
1949
+ shipper:
1950
+ properties:
1951
+ image:
1952
+ properties:
1953
+ registry:
1954
+ type: string
1955
+ repository:
1956
+ type: string
1957
+ tag:
1958
+ type: string
1959
+ type: object
1960
+ type: object
1949
1961
chartVersion:
1950
1962
type: string
1951
1963
checkHostName:
Original file line number Diff line number Diff line change @@ -233,9 +233,11 @@ spec:
233
233
disable : true
234
234
{{- end }}
235
235
deployOnMaster : {{ $.Values.ha.deployOnMaster | quote }}
236
- imageRegistry : {{ $.Values.global.hwameistorImageRegistry }}
237
- # imageRepoOwner: "hwameistor"
238
- imageRepoOwner : {{ $.Values.ha.imageRepoOwner }}
236
+ shipper :
237
+ image :
238
+ registry : {{ $.Values.global.hwameistorImageRegistry }}
239
+ repository : {{.Values.ha.imageRepository}}
240
+ tag : {{$.Values.ha.shipperChar}}
239
241
imagePullPolicy : " IfNotPresent"
240
242
# drbdVersion: "v9.0.32-1"
241
243
drbdVersion : {{ $.Values.ha.drbdVersion }}
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ global:
10
10
operator :
11
11
replicas : 1
12
12
imageRepository : hwameistor/operator
13
- tag : v0.14.1
13
+ tag : v0.14.4
14
14
15
15
localDiskManager :
16
16
tolerationOnMaster : true
299
299
disable : false
300
300
module : drbd
301
301
deployOnMaster : " yes"
302
- imageRepoOwner : hwameistor
302
+ imageRepository : hwameistor/drbd9-shipper
303
303
drbdVersion : v9.0.32-1
304
+ shipperChar : v0.4.0
305
+
306
+ drbdRhel7 :
307
+ imageRepository : hwameistor/drbd9-rhel7
308
+
309
+ drbdRhel8 :
310
+ imageRepository : hwameistor/drbd9-rhel8
311
+
312
+ drbdRhel9 :
313
+ imageRepository : hwameistor/drbd9-rhel9
314
+
315
+ drbdKylin10 :
316
+ imageRepository : hwameistor/drbd9-kylin10
317
+
318
+ drbdBionic :
319
+ imageRepository : hwameistor/drbd9-bionic
320
+
321
+ drbdFocal :
322
+ imageRepository : hwameistor/drbd9-focal
304
323
305
324
# diskReserve example
306
325
# diskReserve:
You can’t perform that action at this time.
0 commit comments