mirror of
https://gitlab.com/oecis/charts.git
synced 2024-11-15 00:28:59 +00:00
18 lines
442 B
YAML
18 lines
442 B
YAML
|
{{- if .Values.configSecret.enabled -}}
|
||
|
apiVersion: v1
|
||
|
kind: Secret
|
||
|
metadata:
|
||
|
name: {{ include "vault-unseal.fullname" . }}-conf
|
||
|
labels:
|
||
|
{{- include "vault-unseal.labels" . | nindent 4 }}
|
||
|
{{- with .Values.configSecret.annotations }}
|
||
|
annotations:
|
||
|
{{- toYaml . | nindent 4 }}
|
||
|
{{- end }}
|
||
|
stringData:
|
||
|
vault-unseal.yaml:
|
||
|
{{- with .Values.configSecret.stringData }}
|
||
|
{{- toYaml . | nindent 4 }}
|
||
|
{{- end }}
|
||
|
{{- end }}
|