Skip to content

Commit 1648c10

Browse files
Bugfix: Fix ingress error causing spec and Rules to be on single line (#22)
* [Bugfix] Fix ingress issue defined in issue 21 Why do we need this change? ======================= Introduced recently in the TLS section is the {{- end -}} where we suppress the newline. This causes the rules to end up on the same line as the previous section and would break the schema and get something like spec:rules: which is invalid What effects does this change have? ======================= Changes the {{- end -}} for the TLS section of the ingress to not suppress the newline * Bump version of the chart as needed
1 parent 29d69af commit 1648c10

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

charts/backstage/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.6.1
18+
version: 0.6.2
1919

2020
dependencies:
2121
- name: common

charts/backstage/templates/ingress.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ spec:
2525
- hosts:
2626
- {{ .Values.ingress.host }}
2727
secretName: {{ .Values.ingress.tls.secretName }}
28-
{{- end -}}
28+
{{- end }}
2929
rules:
3030
- host: {{ .Values.ingress.host }}
3131
http:

0 commit comments

Comments
 (0)