10 lines
243 B
10 lines
243 B
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: {{ include "sigi.fullname" . }}-auth-ldap-key
|
|
labels:
|
|
{{- include "sigi.labels" . | nindent 4 }}
|
|
type: Opaque
|
|
data:
|
|
AUTH_LDAP_BIND_PASSWORD: {{ .Values.sigi.auth.ldap.bindPwd | b64enc }}
|
|
|
|
|