Skip to content
This repository has been archived by the owner on Nov 1, 2022. It is now read-only.

Commit

Permalink
Fix quoting of password etc in helm-operator chart
Browse files Browse the repository at this point in the history
Values in the generated repositories.yaml are now correctly quoted

Signed-off-by: David Hotham <david.hotham@metaswitch.com>
  • Loading branch information
dimbleby committed Jul 18, 2021
1 parent 59d4046 commit 8ab8c67
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions chart/helm-operator/templates/_helpers.tpl
Expand Up @@ -64,11 +64,11 @@ repositories:
- name: {{ required "Please specify a name for the Helm repo" .name }}
url: {{ required "Please specify a URL for the Helm repo" .url }}
cache: /var/fluxd/helm/repository/cache/{{ .name }}-index.yaml
caFile: "{{ .caFile | default "" }}"
certFile: "{{ .certFile | default "" }}"
keyFile: "{{ .keyFile | default "" }}"
password: "{{ .password | default "" }}"
username: "{{ .username | default "" }}"
caFile: {{ .caFile | default "" | quote }}
certFile: {{ .certFile | default "" | quote }}
keyFile: {{ .keyFile | default "" | quote }}
password: {{ .password | default "" | quote }}
username: {{ .username | default "" | quote }}
{{- end }}
{{- end -}}

Expand Down

0 comments on commit 8ab8c67

Please sign in to comment.