3
0
mirror of https://github.com/mastodon/chart synced 2025-05-18 04:53:21 +00:00

remove path duplication from deployment-streaming for new values

This commit is contained in:
John Stewart 2022-12-07 19:10:43 -05:00 committed by GitHub
parent c9231445a9
commit fc817e84b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -62,17 +62,17 @@ spec:
- name: streaming - name: streaming
containerPort: {{ .Values.mastodon.streaming.port }} containerPort: {{ .Values.mastodon.streaming.port }}
protocol: TCP protocol: TCP
{{- if .Values.mastodon.streaming.livenessProbe }} {{- with .Values.mastodon.streaming.livenessProbe }}
livenessProbe: livenessProbe:
{{- toYaml .Values.mastodon.streaming.livenessProbe | nindent 12 }} {{- toYaml . | nindent 12 }}
{{- end }} {{- end }}
{{- if .Values.mastodon.streaming.readinessProbe }} {{- with .Values.mastodon.streaming.readinessProbe }}
readinessProbe: readinessProbe:
{{- toYaml .Values.mastodon.streaming.readinessProbe | nindent 12 }} {{- toYaml . | nindent 12 }}
{{- end }} {{- end }}
{{- if .Values.mastodon.streaming.startupProbe }} {{- with .Values.mastodon.streaming.startupProbe }}
startupProbe: startupProbe:
{{- toYaml .Values.mastodon.streaming.startupProbe | nindent 12 }} {{- toYaml . | nindent 12 }}
{{- end }} {{- end }}
{{- with (default .Values.resources .Values.mastodon.streaming.resources) }} {{- with (default .Values.resources .Values.mastodon.streaming.resources) }}
resources: resources: