Skip to content

Commit

Permalink
Merge pull request #130 from DaoCloud/hwameisto-operator-v0.14.4
Browse files Browse the repository at this point in the history
Hwameisto operator v0.14.4
  • Loading branch information
SSmallMonster committed Mar 14, 2024
2 parents 7fbedbe + cc21895 commit 5865db2
Show file tree
Hide file tree
Showing 6 changed files with 49 additions and 15 deletions.
2 changes: 1 addition & 1 deletion charts/hwameistor-operator/config
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export USE_OPENSOURCE_CHART=true
export REPO_URL=http://hwameistor.io/hwameistor-operator
export REPO_NAME=hwameistor-operator
export CHART_NAME=hwameistor-operator
export VERSION=v0.14.1
export VERSION=v0.14.4

# push to daocloud repo
export DAOCLOUD_REPO_PROJECT=addon
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,12 @@
- "{{ .global.hwameistorImageRegistry }}/{{ .ui.imageRepository }}:{{ .ui.tag }}"
- "{{ .global.hwameistorImageRegistry }}/{{ .operator.imageRepository }}:{{ .operator.tag }}"
- "{{ .global.hwameistorImageRegistry }}/{{ .preHookJob.imageRepository }}:{{ .preHookJob.tag }}"
- "{{ .global.hwameistorImageRegistry }}/{{ .ha.imageRepoOwner }}/drbd9-shipper:{{ .ha.drbdVersion }}_v0.3.6"
- "{{ .global.hwameistorImageRegistry }}/{{ .ha.imageRepoOwner }}/drbd9-rhel7:{{ .ha.drbdVersion }}"
- "{{ .global.hwameistorImageRegistry }}/{{ .ha.imageRepoOwner }}/drbd9-rhel8:{{ .ha.drbdVersion }}"
- "{{ .global.hwameistorImageRegistry }}/{{ .ha.imageRepoOwner }}/drbd9-rhel9:{{ .ha.drbdVersion }}"
- "{{ .global.hwameistorImageRegistry }}/{{ .ha.imageRepoOwner }}/drbd9-kylin10:{{ .ha.drbdVersion }}"
- "{{ .global.hwameistorImageRegistry }}/{{ .ha.imageRepoOwner }}/drbd9-bionic:{{ .ha.drbdVersion }}"
- "{{ .global.hwameistorImageRegistry }}/{{ .ha.imageRepoOwner }}/drbd9-focal:{{ .ha.drbdVersion }}"
- "{{ .global.hwameistorImageRegistry }}/{{ .ha.imageRepository }}:{{ .ha.drbdVersion }}_v0.4.0"
- "{{ .global.hwameistorImageRegistry }}/{{ .drbdRhel7.imageRepository }}:{{ .ha.drbdVersion }}"
- "{{ .global.hwameistorImageRegistry }}/{{ .drbdRhel8.imageRepository }}:{{ .ha.drbdVersion }}"
- "{{ .global.hwameistorImageRegistry }}/{{ .drbdRhel9.imageRepository }}:{{ .ha.drbdVersion }}"
- "{{ .global.hwameistorImageRegistry }}/{{ .drbdKylin10.imageRepository }}:{{ .ha.drbdVersion }}"
- "{{ .global.hwameistorImageRegistry }}/{{ .drbdBionic.imageRepository }}:{{ .ha.drbdVersion }}"
- "{{ .global.hwameistorImageRegistry }}/{{ .drbdFocal.imageRepository }}:{{ .ha.drbdVersion }}"

# - "{{ .global.hwameistorImageRegistry }}/{{ .ha.imageRepoOwner }}/drbd9-jammy:v9.1.11"
4 changes: 2 additions & 2 deletions charts/hwameistor-operator/hwameistor-operator/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
apiVersion: v2
appVersion: v0.14.1
appVersion: v0.14.4
description: A Helm chart for Hwameistor Operator
icon: https://hwameistor.io/img/logo.svg
name: hwameistor-operator
type: application
version: v0.14.1
version: v0.14.4
keywords:
- storage
- local
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1946,6 +1946,18 @@ spec:
type: array
drbd:
properties:
shipper:
properties:
image:
properties:
registry:
type: string
repository:
type: string
tag:
type: string
type: object
type: object
chartVersion:
type: string
checkHostName:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -233,9 +233,11 @@ spec:
disable: true
{{- end }}
deployOnMaster: {{ $.Values.ha.deployOnMaster | quote }}
imageRegistry: {{ $.Values.global.hwameistorImageRegistry }}
# imageRepoOwner: "hwameistor"
imageRepoOwner: {{ $.Values.ha.imageRepoOwner }}
shipper:
image:
registry: {{ $.Values.global.hwameistorImageRegistry }}
repository: {{.Values.ha.imageRepository}}
tag: {{$.Values.ha.shipperChar}}
imagePullPolicy: "IfNotPresent"
# drbdVersion: "v9.0.32-1"
drbdVersion: {{ $.Values.ha.drbdVersion }}
Expand Down
23 changes: 21 additions & 2 deletions charts/hwameistor-operator/hwameistor-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ global:
operator:
replicas: 1
imageRepository: hwameistor/operator
tag: v0.14.1
tag: v0.14.4

localDiskManager:
tolerationOnMaster: true
Expand Down Expand Up @@ -299,8 +299,27 @@ ha:
disable: false
module: drbd
deployOnMaster: "yes"
imageRepoOwner: hwameistor
imageRepository: hwameistor/drbd9-shipper
drbdVersion: v9.0.32-1
shipperChar: v0.4.0

drbdRhel7:
imageRepository: hwameistor/drbd9-rhel7

drbdRhel8:
imageRepository: hwameistor/drbd9-rhel8

drbdRhel9:
imageRepository: hwameistor/drbd9-rhel9

drbdKylin10:
imageRepository: hwameistor/drbd9-kylin10

drbdBionic:
imageRepository: hwameistor/drbd9-bionic

drbdFocal:
imageRepository: hwameistor/drbd9-focal

# diskReserve example
# diskReserve:
Expand Down

0 comments on commit 5865db2

Please sign in to comment.