Skip to content

Commit

Permalink
fix(helm): Fix issue in chart
Browse files Browse the repository at this point in the history
Signed-off-by: oluwole fadeyi <[email protected]>
  • Loading branch information
tfadeyi committed Dec 20, 2023
1 parent 4e76c45 commit 6487f6e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions deploy/charts/auth0-exporter/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ spec:
- "--tls.cert-file=/etc/tls-certs/cert-file"
- "--tls.key-file=/etc/tls-certs/key-file"
{{- end }}
{{- if and (default.Values.exporter.tls.disabled false) (default .Values.exporter.tls.auto false) }}
{{- if and (not .Values.exporter.tls.disabled) (not .Values.exporter.tls.auto) }}
volumeMounts:
- name: tls-certs
mountPath: "/etc/tls-certs/"
Expand All @@ -113,7 +113,7 @@ spec:
tolerations:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- if and (default.Values.exporter.tls.disabled false) (default .Values.exporter.tls.auto false) }}
{{- if and (not .Values.exporter.tls.disabled) (not .Values.exporter.tls.auto) }}
volumes:
- name: tls-certs
secret:
Expand Down
2 changes: 1 addition & 1 deletion deploy/charts/auth0-exporter/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ exporter:
# -- Tenant Users metrics exported by the exporter
users:
# -- Stops the exporter from fetching user info from the Auth0 tenant
enabled: false
enabled: true

# -- Exporter's TLS configuration
tls:
Expand Down

0 comments on commit 6487f6e

Please sign in to comment.