Skip to content

Commit c4bb007

Browse files
authored
charts/authentik: fix worker containerPorts (#388)
1 parent deeb4f3 commit c4bb007

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

charts/authentik/templates/worker/deployment.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,13 @@ spec:
109109
mountPath: /blueprints/mounted/secret-{{ $name }}
110110
{{- end }}
111111
{{- end }}
112+
ports:
113+
- name: http
114+
containerPort: {{ .Values.worker.containerPorts.http }}
115+
protocol: TCP
116+
- name: metrics
117+
containerPort: {{ .Values.worker.containerPorts.metrics }}
118+
protocol: TCP
112119
{{- with .Values.worker.livenessProbe }}
113120
livenessProbe:
114121
{{ toYaml . | nindent 12 }}
@@ -178,13 +185,6 @@ spec:
178185
{{- end }}
179186
- name: geoip-db
180187
mountPath: /usr/share/GeoIP
181-
ports:
182-
- name: http
183-
containerPort: {{ .Values.worker.containerPorts.http }}
184-
protocol: TCP
185-
- name: metrics
186-
containerPort: {{ .Values.worker.containerPorts.metrics }}
187-
protocol: TCP
188188
resources:
189189
{{- toYaml .Values.geoip.resources | nindent 12 }}
190190
{{- with .Values.geoip.containerSecurityContext }}

0 commit comments

Comments
 (0)