We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9963a0c commit 163c844Copy full SHA for 163c844
VERSION
@@ -1 +1 @@
1
-0.1.7-rc.5
+0.1.7-rc.6
helm-charts/kuberoapp/templates/secret-basic-auth.yaml
@@ -2,7 +2,7 @@
2
{{- $accounts := .Values.basicAuth.accounts }}
3
{{- $val := "" }}
4
{{- range $account := $accounts }}
5
-{{- $hash := htpasswd $account.user $account.password }}
+{{- $hash := htpasswd $account.user $account.pass }}
6
{{- $val = printf "%s%s\n" $val $hash }}
7
{{- end }}
8
apiVersion: v1
helm-charts/kuberoapp/values.yaml
@@ -160,11 +160,11 @@ resources: {}
160
161
basicAuth:
162
realm: "Protected"
163
- accounts:
164
- - user: foo
165
- password: bar
+ accounts: []
+ #- user: foo
+ # pass: bar
166
#- user: bar
167
- # password: foo
+ # pass: foo
168
169
autoscaling:
170
enabled: false
0 commit comments