Skip to content

Commit 640ce6c

Browse files
authored
bug: fix name of appConfig configmap (backstage#144)
Signed-off-by: Jakub Coufal <[email protected]>
1 parent 1bfd111 commit 640ce6c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

charts/backstage/Chart.yaml

+1-1
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.4.0
41+
version: 1.5.0

charts/backstage/README.md

+1-1
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.4.0](https://img.shields.io/badge/Version-1.4.0-informational?style=flat-square)
5+
![Version: 1.5.0](https://img.shields.io/badge/Version-1.5.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/app-config-configmap.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
apiVersion: v1
33
kind: ConfigMap
44
metadata:
5-
name: backstage-app-config
5+
name: {{ include "common.names.fullname" . }}-app-config
66
data:
77
app-config.yaml: |
88
{{- include "common.tplvalues.render" ( dict "value" .Values.backstage.appConfig "context" $) | nindent 4 }}

charts/backstage/templates/backstage-deployment.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ spec:
6565
{{- if .Values.backstage.appConfig }}
6666
- name: backstage-app-config
6767
configMap:
68-
name: backstage-app-config
68+
name: {{ include "common.names.fullname" . }}-app-config
6969
{{- end }}
7070
{{- include "backstage.renderImagePullSecrets" . | nindent 6 }}
7171
{{- if .Values.backstage.initContainers }}

0 commit comments

Comments
 (0)