Files
charts/bitnami/ejbca/templates/secrets.yaml
2023-08-28 10:00:32 +02:00

22 lines
735 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:
{{- if .Values.ejbcaAdminPassword }}
ejbca-admin-password: {{ .Values.ejbcaAdminPassword | b64enc | quote }}
{{- else }}
ejbca-admin-password: {{ randAlphaNum 10 | b64enc | quote }}
{{- end }}