Skip to content

Commit

Permalink
feat(authelia): acl checksum (#192)
Browse files Browse the repository at this point in the history
  • Loading branch information
james-d-elliott authored Nov 28, 2022
1 parent 844a358 commit 9e4ac94
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions 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.47
version: 0.8.48
kubeVersion: ">= 1.13.0-0"
description: Authelia is a Single Sign-On Multi-Factor portal for web apps
type: application
Expand All @@ -26,6 +26,6 @@ maintainers:
email: [email protected]
url: https://github.com/james-d-elliott
icon: https://avatars2.githubusercontent.com/u/59122411?s=200&v=4
appVersion: 4.37.0
appVersion: 4.37.2
deprecated: false
annotations: {}
5 changes: 4 additions & 1 deletion charts/authelia/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,10 @@ spec:
labels: {{ include "authelia.labels" (merge (dict "Labels" .Values.pod.labels) .) | nindent 8 }}
annotations:
{{- if (include "authelia.generate.configMap" .) }}
checksum/configMap: {{ include (print $.Template.BasePath "/configMap.yaml") . | sha256sum }}
checksum/config: {{ include (print $.Template.BasePath "/configMap.yaml") . | sha256sum }}
{{- end }}
{{- if (include "authelia.generate.acl.secret" .) }}
checksum/acl: {{ include (print $.Template.BasePath "/secretACL.yaml") . | sha256sum }}
{{- end }}
{{ if and (include "authelia.enabled.secret" .) (not (include "authelia.enabled.injector" .)) (not .Values.secret.excludeVolumeAndMounts) -}}
checksum/secret: {{ include (print $.Template.BasePath "/secret.yaml") . | sha256sum }}
Expand Down

0 comments on commit 9e4ac94

Please sign in to comment.