Skip to content

Commit

Permalink
fix: render resources specified via extraDeploy (backstage#89)
Browse files Browse the repository at this point in the history
  • Loading branch information
tumido authored Apr 28, 2023
1 parent 30ae55f commit 2c056d7
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/backstage/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.21.0
version: 0.21.1

dependencies:
- name: common
Expand Down
2 changes: 1 addition & 1 deletion charts/backstage/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

# Backstage Helm Chart

![Version: 0.21.0](https://img.shields.io/badge/Version-0.21.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
![Version: 0.21.1](https://img.shields.io/badge/Version-0.21.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)

A Helm chart for deploying a Backstage application

Expand Down
7 changes: 7 additions & 0 deletions charts/backstage/ci/extraDeploy-values.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
extraDeploy:
- apiVersion: v1
kind: ConfigMap
metadata:
name: foo
data:
bar: baz
4 changes: 4 additions & 0 deletions charts/backstage/templates/extra-list.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{{- range .Values.extraDeploy }}
---
{{ include "common.tplvalues.render" (dict "value" . "context" $) }}
{{- end }}

0 comments on commit 2c056d7

Please sign in to comment.