Skip to content

Commit

Permalink
RHIDP-3260: rename dynamic plugins npmrc secret (#38)
Browse files Browse the repository at this point in the history
* fix: RHIDP-3260: Rename secret dynamc-plugins-npmrc

Rename the dynamic-plugins-npmrc secret to be specific to the instance
of the Helm Chart with which it is associated so as to support
multiple helm installs in one namespace

* Bump chart version
  • Loading branch information
coreydaley committed Jul 24, 2024
1 parent 5b76ede commit 7969b8c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion charts/backstage/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ sources:
# 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: 2.16.9
version: 2.16.10
4 changes: 2 additions & 2 deletions charts/backstage/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# RHDH Backstage Helm Chart for OpenShift (Community Version)

[![Artifact Hub](https://img.shields.io/endpoint?url=https://artifacthub.io/badge/repository/rhdh-chart&style=flat-square)](https://artifacthub.io/packages/search?repo=rhdh-chart)
![Version: 2.16.9](https://img.shields.io/badge/Version-2.16.9-informational?style=flat-square)
![Version: 2.16.10](https://img.shields.io/badge/Version-2.16.10-informational?style=flat-square)
![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)

A Helm chart for deploying Red Hat Developer Hub.
Expand All @@ -11,7 +11,7 @@ The telemetry data collection feature is enabled by default. Red Hat Developer H

**Homepage:** <https://redhat-developer.github.io/rhdh-chart/>

## Productized RHDH
## Productized RHDH

For the **PRODUCTIZED** version of this chart, see:

Expand Down
2 changes: 1 addition & 1 deletion charts/backstage/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -2611,7 +2611,7 @@
"secret": {
"defaultMode": 420,
"optional": true,
"secretName": "dynamic-plugins-npmrc"
"secretName": "{{ printf \"%s-dynamic-plugins-npmrc\" .Release.Name }}"
}
},
{
Expand Down
2 changes: 1 addition & 1 deletion charts/backstage/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ upstream:
secret:
defaultMode: 420
optional: true
secretName: dynamic-plugins-npmrc
secretName: '{{ printf "%s-dynamic-plugins-npmrc" .Release.Name }}'
- name: npmcacache
emptyDir: {}
initContainers:
Expand Down

0 comments on commit 7969b8c

Please sign in to comment.