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

Fix quoting of password etc in helm-operator chart #630

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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