Skip to content

Commit

Permalink
🐛 Helm Chart: Indentation error in templates with "extraContainers" v…
Browse files Browse the repository at this point in the history
…alues (#17084)

* Fix indentation error on helm templates with the extraContainers value

* Increment the version of the umbrella helm chart
  • Loading branch information
Nmaxime authored Sep 28, 2022
1 parent 2aea783 commit dcc25d7
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion charts/airbyte-bootloader/templates/pod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ spec:
{{ toYaml .Values.extraContainers | nindent 4 }}
{{- end }}
{{- if .Values.global.extraContainers }}
{{ toYaml .Values.global.extraContainers | indent 4 }}
{{ toYaml .Values.global.extraContainers | nindent 4 }}
{{- end }}
{{- if .Values.extraVolumes }}
volumes:
Expand Down
4 changes: 2 additions & 2 deletions charts/airbyte-server/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -250,10 +250,10 @@ spec:
{{ toYaml .Values.global.extraVolumeMounts | nindent 8 }}
{{- end }}
{{- if .Values.extraContainers }}
{{ toYaml .Values.extraContainers | indent 6 }}
{{ toYaml .Values.extraContainers | nindent 6 }}
{{- end }}
{{- if .Values.global.extraContainers }}
{{ toYaml .Values.global.extraContainers | indent 6 }}
{{ toYaml .Values.global.extraContainers | nindent 6 }}
{{- end }}
volumes:
{{- if eq .Values.global.deploymentMode "oss" }}
Expand Down
4 changes: 2 additions & 2 deletions charts/airbyte-temporal/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -132,10 +132,10 @@ spec:
failureThreshold: {{ .Values.readinessProbe.failureThreshold }}
{{- end }}
{{- if .Values.extraContainers }}
{{ toYaml .Values.extraContainers | indent 6 }}
{{ toYaml .Values.extraContainers | nindent 6 }}
{{- end }}
{{- if .Values.global.extraContainers }}
{{ toYaml .Values.global.extraContainers | indent 6 }}
{{ toYaml .Values.global.extraContainers | nindent 6 }}
{{- end }}
volumes:
- name: airbyte-temporal-dynamicconfig
Expand Down
4 changes: 2 additions & 2 deletions charts/airbyte-worker/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -409,10 +409,10 @@ spec:
{{- toYaml .Values.global.extraVolumeMounts | nindent 8 }}
{{- end }}
{{- if .Values.extraContainers }}
{{ toYaml .Values.extraContainers | indent 6 }}
{{ toYaml .Values.extraContainers | nindent 6 }}
{{- end }}
{{- if .Values.global.extraContainers }}
{{ toYaml .Values.global.extraContainers | indent 6 }}
{{ toYaml .Values.global.extraContainers | nindent 6 }}
{{- end }}
volumes:
{{- if eq .Values.global.deploymentMode "oss" }}
Expand Down
2 changes: 1 addition & 1 deletion charts/airbyte/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.45.2
version: 0.45.3

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down

0 comments on commit dcc25d7

Please sign in to comment.