Skip to content

Commit

Permalink
fix(authelia): exclude secret annotation (#167)
Browse files Browse the repository at this point in the history
  • Loading branch information
james-d-elliott authored May 20, 2022
1 parent f8b0697 commit 11f6d1e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 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.8.31
version: 0.8.32
kubeVersion: ">= 1.13.0-0"
description: Authelia is a Single Sign-On Multi-Factor portal for web apps
type: application
Expand Down
2 changes: 1 addition & 1 deletion charts/authelia/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ spec:
{{- if (include "authelia.generate.configMap" .) }}
checksum/configMap: {{ include (print $.Template.BasePath "/configMap.yaml") . | sha256sum }}
{{- end }}
{{ if (include "authelia.enabled.secret" .) -}}
{{ if and (include "authelia.enabled.secret" .) (not (include "authelia.enabled.injector" .)) (not .Values.secret.excludeVolumeAndMounts) -}}
checksum/secret: {{ include (print $.Template.BasePath "/secret.yaml") . | sha256sum }}
{{- end }}
{{- with $annotations := include "authelia.annotations" (merge (dict "Annotations" .Values.pod.annotations) .) }}
Expand Down

0 comments on commit 11f6d1e

Please sign in to comment.