Skip to content

Commit

Permalink
authentik: fix indentation issues (#237)
Browse files Browse the repository at this point in the history
  • Loading branch information
rissson committed Feb 15, 2024
1 parent 7f7ac1d commit 900becd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions charts/authentik/templates/server/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ spec:
- server
env:
{{- with (concat .Values.global.env .Values.server.env) }}
{{- toYaml . | nindent 10 }}
{{- toYaml . | nindent 12 }}
{{- end }}
- name: AUTHENTIK_LISTEN__HTTP
value: {{ printf "0.0.0.0:%v" .Values.server.containerPorts.http | quote }}
Expand Down Expand Up @@ -133,7 +133,7 @@ spec:
imagePullPolicy: {{ .Values.geoip.image.pullPolicy }}
env:
{{- with .Values.geoip.env }}
{{- toYaml . | nindent 10 }}
{{- toYaml . | nindent 12 }}
{{- end }}
- name: GEOIPUPDATE_FREQUENCY
value: {{ .Values.geoip.updateInterval | quote }}
Expand Down Expand Up @@ -178,7 +178,7 @@ spec:
{{- toYaml .Values.geoip.resources | nindent 10 }}
{{- with .Values.geoip.containerSecurityContext }}
securityContext:
{{- toYaml . | nindent 10 }}
{{- toYaml . | nindent 12 }}
{{- end }}
{{- end }}
{{- with .Values.server.extraContainers }}
Expand Down
6 changes: 3 additions & 3 deletions charts/authentik/templates/worker/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ spec:
- worker
env:
{{- with (concat .Values.global.env .Values.worker.env) }}
{{- toYaml . | nindent 10 }}
{{- toYaml . | nindent 12 }}
{{- end }}
envFrom:
- secretRef:
Expand Down Expand Up @@ -116,7 +116,7 @@ spec:
imagePullPolicy: {{ .Values.geoip.image.pullPolicy }}
env:
{{- with .Values.geoip.env }}
{{- toYaml . | nindent 10 }}
{{- toYaml . | nindent 12 }}
{{- end }}
- name: GEOIPUPDATE_FREQUENCY
value: {{ .Values.geoip.updateInterval | quote }}
Expand Down Expand Up @@ -161,7 +161,7 @@ spec:
{{- toYaml .Values.geoip.resources | nindent 10 }}
{{- with .Values.geoip.containerSecurityContext }}
securityContext:
{{- toYaml . | nindent 10 }}
{{- toYaml . | nindent 12 }}
{{- end }}
{{- end }}
{{- with .Values.worker.extraContainers }}
Expand Down

0 comments on commit 900becd

Please sign in to comment.