Updated chart so that it worked better as a subchart, is more configurable and better documented
All checks were successful
Deploy the Helm Chart / build (push) Successful in 11s
All checks were successful
Deploy the Helm Chart / build (push) Successful in 11s
This commit is contained in:
parent
82908c043c
commit
ae8f4ad22b
11 changed files with 222 additions and 145 deletions
|
|
@ -1,12 +1,12 @@
|
|||
{{- if and (.Values.vault.enabled) (eq .Values.vault.type "azure") -}}
|
||||
{{- if and (.Values.enabled) (eq .Values.vault.type "azure") -}}
|
||||
apiVersion: v1
|
||||
kind: Secret
|
||||
metadata:
|
||||
name: {{ .Release.Name }}-vault-secret
|
||||
name: {{ include "vault.fullname" . }}-secret
|
||||
type: opaque
|
||||
data:
|
||||
client-id: {{ .Values.vault.clientId | b64enc }}
|
||||
client-secret: {{ .Values.vault.clientSecret | b64enc}}
|
||||
name: {{ .Values.vault.vaultName | b64enc }}
|
||||
tenant-id: {{ .Values.vault.tenantId | b64enc }}
|
||||
client-id: {{ .Values.clientId | b64enc }}
|
||||
client-secret: {{ .Values.clientSecret | b64enc}}
|
||||
name: {{ .Values.vaultName | b64enc }}
|
||||
tenant-id: {{ .Values.tenantId | b64enc }}
|
||||
{{- end -}}
|
||||
Loading…
Add table
Add a link
Reference in a new issue