mirror of
https://github.com/ceph/ceph-csi.git
synced 2025-05-21 14:56:41 +00:00
helm: mark userID and userKey required in secret
This patch marks `userID` and `userKey` required in helm values. A release note has been added for the same as well. Signed-off-by: Niraj Yadav <niryadav@redhat.com>
This commit is contained in:
parent
c82b38deda
commit
20b9ecc15c
@ -2,6 +2,9 @@
|
||||
|
||||
## Breaking Changes
|
||||
|
||||
- Support for `secret.adminID` and `secret.adminKey` has been deprecated and removed
|
||||
from Helm charts. Please use `secret.userID` and `secret.userKey` instead.
|
||||
|
||||
## Features
|
||||
|
||||
## NOTE
|
||||
|
@ -14,6 +14,6 @@ metadata:
|
||||
heritage: {{ .Release.Service }}
|
||||
{{- with .Values.commonLabels }}{{ toYaml . | trim | nindent 4 }}{{- end }}
|
||||
stringData:
|
||||
userID: {{ .Values.secret.userID }}
|
||||
userKey: {{ .Values.secret.userKey }}
|
||||
userID: {{ required "A valid userID must be specified in secret" .Values.secret.userID }}
|
||||
userKey: {{ required "A valid userKey must be specified in secret" .Values.secret.userKey }}
|
||||
{{- end -}}
|
||||
|
Loading…
x
Reference in New Issue
Block a user