mirror of
https://github.com/bitnami/charts.git
synced 2026-02-27 15:37:06 +08:00
21 lines
1011 B
YAML
21 lines
1011 B
YAML
{{- /*
|
|
Copyright VMware, Inc.
|
|
SPDX-License-Identifier: APACHE-2.0
|
|
*/}}
|
|
|
|
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:
|
|
master-key: {{ include "common.secrets.passwords.manage" (dict "secret" (include "common.names.fullname" .) "key" "master-key" "length" 10 "providedValues" (list "server.masterKey") "context" $) }}
|
|
{{ if .Values.dashboard.enabled }}
|
|
parse-dashboard-password: {{ include "common.secrets.passwords.manage" (dict "secret" (include "common.names.fullname" .) "key" "parse-dashboard-password" "length" 10 "providedValues" (list "dashboard.password") "context" $) }}
|
|
{{ end }}
|