Skip to content
Snippets Groups Projects

charts: disable TLS

Merged Lars Seipel requested to merge charts-disable-tls into master
7 files
+ 31
20
Compare changes
  • Side-by-side
  • Inline
Files
7
@@ -60,3 +60,16 @@ Create the name of the service account to use
@@ -60,3 +60,16 @@ Create the name of the service account to use
{{- default "default" .Values.serviceAccount.name }}
{{- default "default" .Values.serviceAccount.name }}
{{- end }}
{{- end }}
{{- end }}
{{- end }}
 
 
{{- define "bbbatscale-support-notify.dockerConfig" -}}
 
auths:
 
{{- $auths := .auths }}
 
{{- range (keys $auths) }}
 
{{- $auth := get $auths . }}
 
{{ quote . }}:
 
username: {{ quote $auth.username }}
 
password: {{ quote $auth.password }}
 
auth: {{ printf "%s:%s" $auth.username $auth.password | b64enc }}
 
email: {{ get $auth "email" | quote }}
 
{{- end }}
 
{{- end -}}
Loading