Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update hwameistor-operator to v0.14.7 #140

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
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.7

# 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 }}/{{ .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.7
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.7
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"
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
Loading
Loading