Skip to content

Commit

Permalink
fix(authelia): access control indentation (#53)
Browse files Browse the repository at this point in the history
This makes the indentation uniform with other areas of the configmap.
  • Loading branch information
james-d-elliott authored May 5, 2021
1 parent ca30b98 commit 7f57d79
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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.3.18
version: 0.3.19
kubeVersion: ">= 1.13.0-0"
description: Authelia is a Single Sign-On Multi-Factor portal for web apps
type: application
Expand Down
4 changes: 2 additions & 2 deletions charts/authelia/templates/configMap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -175,12 +175,12 @@ data:
{{- if (eq (len .Values.configMap.access_control.networks) 0) }}
networks: []
{{- else }}
networks: {{ toYaml .Values.configMap.access_control.networks | nindent 8 }}
networks: {{ toYaml .Values.configMap.access_control.networks | nindent 6 }}
{{- end }}
{{- if (eq (len .Values.configMap.access_control.rules) 0) }}
rules: []
{{- else }}
rules: {{ toYaml .Values.configMap.access_control.rules | nindent 8 }}
rules: {{ toYaml .Values.configMap.access_control.rules | nindent 6 }}
{{- end }}
...
{{- end }}

0 comments on commit 7f57d79

Please sign in to comment.