Skip to content

Commit

Permalink
update hwameistor-operator to v0.14.8
Browse files Browse the repository at this point in the history
Signed-off-by: peng9808 <peng.lai@daocloud.io>
  • Loading branch information
peng9808 committed Jul 31, 2024
1 parent 84da326 commit 8fe11d3
Show file tree
Hide file tree
Showing 9 changed files with 1,436 additions and 338 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.4
export VERSION=v0.14.8

# push to daocloud repo
export DAOCLOUD_REPO_PROJECT=addon
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,14 @@
- "{{ .global.hwameistorImageRegistry }}/{{ .ui.imageRepository }}:{{ .ui.tag }}"
- "{{ .global.hwameistorImageRegistry }}/{{ .operator.imageRepository }}:{{ .operator.tag }}"
- "{{ .global.hwameistorImageRegistry }}/{{ .preHookJob.imageRepository }}:{{ .preHookJob.tag }}"
- "{{ .global.hwameistorImageRegistry }}/{{ .ha.imageRepository }}:{{ .ha.drbdVersion }}_v0.4.0"
- "{{ .global.hwameistorImageRegistry }}/{{ .ha.imageRepository }}:{{ .ha.drbdVersion }}_v0.4.1"
- "{{ .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 }}/{{ .dataLoadManager.imageRepository }}:{{ .dataLoadManager.tag }}"
- "{{ .global.hwameistorImageRegistry }}/{{ .dataSetManager.imageRepository }}:{{ .dataSetManager.tag }}"
- "{{ .global.hwameistorImageRegistry }}/{{ .dataLoadInit.imageRepository }}:{{ .dataLoadInit.tag }}"
# - "{{ .global.hwameistorImageRegistry }}/{{ .ha.imageRepoOwner }}/drbd9-jammy:v9.1.11"
8 changes: 2 additions & 6 deletions charts/hwameistor-operator/hwameistor-operator/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
apiVersion: v2
appVersion: v0.14.4
appVersion: v0.14.8
description: A Helm chart for Hwameistor Operator
icon: https://hwameistor.io/img/logo.svg
name: hwameistor-operator
type: application
version: v0.14.4
keywords:
- storage
- local
- block
version: v0.14.8
1,349 changes: 1,333 additions & 16 deletions charts/hwameistor-operator/hwameistor-operator/crds/hwameistor.io_clusters.yaml

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -125,3 +125,13 @@ Create the name of the service account to use
{{- define "hwameistor.uiImageTag" -}}
{{- default .Values.global.hwameistorVersion .Values.ui.tag -}}
{{- end -}}

{{/* Allow dataLoadManager image tag to be overridden. */}}
{{- define "hwameistor.dataLoalManagerImageTag" -}}
{{- default .Values.global.hwameistorVersion .Values.dataLoadManager.tag -}}
{{- end -}}

{{/* Allow dataSetManager image tag to be overridden. */}}
{{- define "hwameistor.dataSetManagerImageTag" -}}
{{- default .Values.global.hwameistorVersion .Values.dataSetManager.tag -}}
{{- end -}}
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ spec:
- {{ . }}
{{- end }}
{{- end }}
datasetDefaultPoolClass: {{ $.Values.datasetDefaultPoolClass }}
notClaimDisk: {{ $.Values.global.notClaimDisk }}
targetNamespace: {{ $.Values.global.targetNamespace }}
rbac:
Expand Down Expand Up @@ -234,10 +235,9 @@ spec:
{{- end }}
deployOnMaster: {{ $.Values.ha.deployOnMaster | quote }}
shipper:
image:
registry: {{ $.Values.global.hwameistorImageRegistry }}
repository: {{.Values.ha.imageRepository}}
tag: {{$.Values.ha.shipperChar}}
registry: {{ $.Values.global.hwameistorImageRegistry }}
repository: {{.Values.ha.imageRepository}}
tag: {{$.Values.ha.shipperChar}}
imagePullPolicy: "IfNotPresent"
# drbdVersion: "v9.0.32-1"
drbdVersion: {{ $.Values.ha.drbdVersion }}
Expand All @@ -252,8 +252,24 @@ spec:
operator: DoesNotExist
- key: node-role.kubernetes.io/control-plane
operator: DoesNotExist
chartVersion: "v0.4.0"
chartVersion: "v0.4.1"
storageClass:
allowVolumeExpansion: true
reclaimPolicy: "Delete"
fsType: "xfs"
allowVolumeExpansion: {{ $.Values.storageClass.allowVolumeExpansion }}
reclaimPolicy: {{ $.Values.storageClass.reclaimPolicy }}
fsType: "xfs"

dataLoadManager:
disable: {{ $.Values.dataLoadManager.disable }}
dataLoadManagerContainer:
image:
registry: {{ $.Values.global.hwameistorImageRegistry }}
repository: {{ $.Values.dataLoadManager.imageRepository }}
tag: {{ template "hwameistor.dataLoalManagerImageTag" . }}

dataSetManager:
disable: {{ $.Values.dataSetManager.disable }}
dataSetManagerContainer:
image:
registry: {{ $.Values.global.hwameistorImageRegistry }}
repository: {{ $.Values.dataSetManager.imageRepository }}
tag: {{ template "hwameistor.dataSetManagerImageTag" . }}
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,25 @@ pvcAutoResizer:
memory: 20Mi

localDiskActionController:
resources:
limits:
cpu: 300m
memory: 300Mi
requests:
cpu: 1m
memory: 20Mi


dataLoadManager:
resources:
limits:
cpu: 300m
memory: 300Mi
requests:
cpu: 1m
memory: 20Mi

dataSetManager:
resources:
limits:
cpu: 300m
Expand Down
133 changes: 0 additions & 133 deletions charts/hwameistor-operator/hwameistor-operator/values.schema.json

This file was deleted.

Loading

0 comments on commit 8fe11d3

Please sign in to comment.