Skip to content

Commit

Permalink
Merge pull request #18 from billimek/fix_helm_quote
Browse files Browse the repository at this point in the history
quote all environment variables
  • Loading branch information
ricoberger authored Oct 15, 2019
2 parents 2a51988 + 4fca66b commit 6d2fd2c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions charts/vault-secrets-operator/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,17 +37,17 @@ spec:
- name: OPERATOR_NAME
value: "vault-secrets-operator"
- name: VAULT_ADDRESS
value: {{ .Values.vault.address }}
value: {{ .Values.vault.address | quote }}
- name: VAULT_AUTH_METHOD
value: {{ .Values.vault.authMethod }}
value: {{ .Values.vault.authMethod | quote }}
- name: VAULT_TOKEN_PATH
value: {{ .Values.vault.tokenPath }}
value: {{ .Values.vault.tokenPath | quote }}
- name: VAULT_KUBERNETES_PATH
value: {{ .Values.vault.kubernetesPath }}
value: {{ .Values.vault.kubernetesPath | quote }}
- name: VAULT_KUBERNETES_ROLE
value: {{ .Values.vault.kubernetesRole }}
value: {{ .Values.vault.kubernetesRole | quote }}
- name: VAULT_RECONCILIATION_TIME
value: {{ .Values.vault.reconciliationTime }}
value: {{ .Values.vault.reconciliationTime | quote }}
{{- include "vault-secrets-operator.environmentVars" .Values | nindent 12 }}
ports:
- name: metrics
Expand Down

0 comments on commit 6d2fd2c

Please sign in to comment.