Skip to content

Commit

Permalink
fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
sofuture committed Dec 16, 2024
1 parent 4552dbc commit 03f045b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ template:
secretName: gcp-cloud-credential
optional: true
{{- if .Values.inboxListener.deployment.extraVolumes }}
{{ toYaml .Values.inboxListener.deployment.extraVolumes | indent 6 }}
{{- toYaml .Values.inboxListener.deployment.extraVolumes | nindent 6 }}
{{- end }}
{{- if .Values.inboxListener.deployment.localScratch.enabled }}
- name: local-scratch
Expand All @@ -35,7 +35,7 @@ template:
{{- end}}
{{- if .Values.inboxListener.deployment.initContainers }}
initContainers:
{{- toYaml .Values.inboxListener.deployment.initContainers | indent 6 }}
{{- toYaml .Values.inboxListener.deployment.initContainers | nindent 6 }}
{{- end }}
containers:
- name: inbox-listener
Expand All @@ -61,7 +61,7 @@ template:
name: local-scratch
{{- end }}
{{- if .Values.inboxListener.deployment.extraVolumeMounts }}
{{ toYaml .Values.inboxListener.deployment.extraVolumeMounts | indent 10 }}
{{- toYaml .Values.inboxListener.deployment.extraVolumeMounts | nindent 10 }}
{{- end }}
ports:
- name: metrics
Expand Down
6 changes: 3 additions & 3 deletions charts/primary-site/templates/deployments/stream-service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ spec:
secretName: gcp-cloud-credential
optional: true
{{- if .Values.streamService.deployment.extraVolumes }}
{{ toYaml .Values.streamService.deployment.extraVolumes | indent 8 }}
{{- toYaml .Values.streamService.deployment.extraVolumes | nindent 8 }}
{{- end }}
{{- if .Values.streamService.deployment.initContainers }}
initContainers:
{{- toYaml .Values.streamService.deployment.initContainers | indent 8 }}
{{- toYaml .Values.streamService.deployment.initContainers | nindent 8 }}
{{- end }}
containers:
- name: stream-service
Expand All @@ -57,7 +57,7 @@ spec:
- mountPath: /secrets
name: cloud-credentials
{{- if .Values.streamService.deployment.extraVolumeMounts }}
{{ toYaml .Values.streamService.deployment.extraVolumeMounts | indent 12 }}
{{- toYaml .Values.streamService.deployment.extraVolumeMounts | nindent 12 }}
{{- end }}
envFrom:
- secretRef:
Expand Down

0 comments on commit 03f045b

Please sign in to comment.