Skip to content

Commit

Permalink
fix: ingress backend indentation and redis secret
Browse files Browse the repository at this point in the history
  • Loading branch information
james-d-elliott committed Feb 16, 2021
1 parent b610750 commit 6874a86
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion charts/authelia/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: authelia
version: 0.1.5
version: 0.1.6
kubeVersion: ">= 1.13.0"
description: Authelia is a Single Sign-On Multi-Factor portal for web apps
type: application
Expand Down
4 changes: 2 additions & 2 deletions charts/authelia/templates/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ spec:
port:
number: {{ include "authelia.service.port" . }}
{{- else }}
serviceName: {{ include "authelia.name" . }}
servicePort: {{ include "authelia.service.port" . }}
serviceName: {{ include "authelia.name" . }}
servicePort: {{ include "authelia.service.port" . }}
{{- end }}
{{- if .Values.ingress.tls.enabled }}
tls:
Expand Down
2 changes: 1 addition & 1 deletion charts/authelia/templates/secret.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ data:
{{- .Values.secret.session.key | nindent 2 }}: {{ include "authelia.secret.standard" (merge (dict "SecretValue" .Values.secret.session.value) .) }}
{{- .Values.secret.ldap.key | nindent 2 }}: {{ include "authelia.secret.standard" (merge (dict "SecretValue" .Values.secret.ldap.value) .) }}
{{- .Values.secret.storage.key | nindent 2 }}: {{ include "authelia.secret.standard" (merge (dict "SecretValue" .Values.secret.storage.value) .) }}
{{- if or (include "authelia.configured.redis" .) (include "authelia.configured.redisSecret" .) }}
{{- if and (include "authelia.configured.redis" .) (include "authelia.configured.redisSecret" .) }}
{{- .Values.secret.redis.key | nindent 2 }}: {{ include "authelia.secret.standard" (merge (dict "SecretValue" .Values.secret.redis.value) .) }}
{{- end }}
{{- if or (include "authelia.configured.smtp" .) (include "authelia.configured.smtpSecret" .) }}
Expand Down

0 comments on commit 6874a86

Please sign in to comment.