Initial code commit + initial automation stuff + etc...
All checks were successful
Deploy the Helm Chart / build (push) Successful in 7s
All checks were successful
Deploy the Helm Chart / build (push) Successful in 7s
This commit is contained in:
parent
6f24ea7563
commit
f40cbdf6dd
12 changed files with 462 additions and 1 deletions
12
templates/vault-keyvault-secret.yaml
Normal file
12
templates/vault-keyvault-secret.yaml
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{{- if and (.Values.vault.enabled) (eq .Values.vault.type "azure") -}}
|
||||
apiVersion: v1
|
||||
kind: Secret
|
||||
metadata:
|
||||
name: {{ .Release.Name }}-vault-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 }}
|
||||
{{- end -}}
|
||||
Loading…
Add table
Add a link
Reference in a new issue