Skip to content

Commit

Permalink
fix(authelia): disable metrics (#176)
Browse files Browse the repository at this point in the history
  • Loading branch information
james-d-elliott authored Jul 1, 2022
1 parent 889d131 commit 262ba63
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.37
version: 0.8.38
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/configMap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ data:
format: {{ default "text" .Values.configMap.log.format }}
file_path: {{ .Values.configMap.log.file_path | default "" | quote }}
keep_stdout: true
{{- if semverCompare ">=4.36.0" (include "authelia.version" .) }}
{{- if and (semverCompare ">=4.36.0" (include "authelia.version" .)) .Values.configMap.telemetry.metrics.enabled }}
telemetry:
metrics:
enabled: {{ .Values.configMap.telemetry.metrics.enabled | default false }}
Expand Down

0 comments on commit 262ba63

Please sign in to comment.