1234567891011121314151617181920 |
- {{- /*
- Copyright VMware, Inc.
- SPDX-License-Identifier: APACHE-2.0
- */}}
- {{- if (include "minio.createSecret" .) }}
- apiVersion: v1
- kind: Secret
- metadata:
- name: {{ include "common.names.fullname" . }}
- namespace: {{ include "common.names.namespace" . | quote }}
- labels: {{- include "common.labels.standard" ( dict "customLabels" .Values.commonLabels "context" $ ) | nindent 4 }}
- {{- if .Values.commonAnnotations }}
- annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
- {{- end }}
- type: Opaque
- data:
- root-user: {{ include "minio.secret.userValue" . | b64enc | quote }}
- root-password: {{ include "minio.secret.passwordValue" . | b64enc | quote }}
- {{- end }}
|