Skip to content

Commit

Permalink
fix: validation failure message mentioning wrong helm value (#258)
Browse files Browse the repository at this point in the history
  • Loading branch information
gietschess authored Aug 16, 2024
1 parent 22638f6 commit 1f37719
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.9.4
version: 0.9.5
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/validations.configMap.check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
{{ else if .Values.configMap.server.endpoints.authz }}
{{ range $authz := .Values.configMap.server.endpoints.authz }}
{{ if not (has $authz.implementation $authzimpl) }}
{{ fail (printf "The implementation name '%s' specified via 'configMap.server.endpoints.automatic_authz_implementations' is not known. Known values are '%s'." $authz.implementation (join "', '" $authzimpl)) }}
{{ fail (printf "The implementation name '%s' specified via 'configMap.server.endpoints.authz' is not known. Known values are '%s'." $authz.implementation (join "', '" $authzimpl)) }}
{{ end }}
{{ end }}
{{ end }}
Expand Down

0 comments on commit 1f37719

Please sign in to comment.