Skip to content

Commit 58edf6e

Browse files
authored
feat: allow for ingress.host templating (#153)
Signed-off-by: Tomas Coufal <tcoufal@redhat.com>
1 parent e0d7fb2 commit 58edf6e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

charts/backstage/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ sources:
3838
# This is the chart version. This version number should be incremented each time you make changes
3939
# to the chart and its templates, including the app version.
4040
# Versions are expected to follow Semantic Versioning (https://semver.org/)
41-
version: 1.7.0
41+
version: 1.8.0

charts/backstage/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Backstage Helm Chart
33

44
[![Artifact Hub](https://img.shields.io/endpoint?url=https://artifacthub.io/badge/repository/backstage)](https://artifacthub.io/packages/search?repo=backstage)
5-
![Version: 1.7.0](https://img.shields.io/badge/Version-1.7.0-informational?style=flat-square)
5+
![Version: 1.8.0](https://img.shields.io/badge/Version-1.8.0-informational?style=flat-square)
66
![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
77

88
A Helm chart for deploying a Backstage application

charts/backstage/templates/ingress.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ spec:
2727
secretName: {{ .Values.ingress.tls.secretName }}
2828
{{- end }}
2929
rules:
30-
- host: {{ .Values.ingress.host }}
30+
- host: {{ include "common.tplvalues.render" ( dict "value" .Values.ingress.host "context" $ ) }}
3131
http:
3232
paths:
3333
- path: /

0 commit comments

Comments
 (0)