Skip to content

Commit c000549

Browse files
authored
Workaround for Bitnami Registry migration (#284)
* fix: move PSQL image to Bitnami Legacy registry Signed-off-by: Davi Garcia <[email protected]> * fix: bump semver of chart Signed-off-by: Davi Garcia <[email protected]> * chore(doc): updates readme with updated version Signed-off-by: Davi Garcia <[email protected]> --------- Signed-off-by: Davi Garcia <[email protected]>
1 parent 460de86 commit c000549

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
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: 2.6.1
41+
version: 2.6.2

charts/backstage/README.md

Lines changed: 2 additions & 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: 2.6.1](https://img.shields.io/badge/Version-2.6.1-informational?style=flat-square)
5+
![Version: 2.6.2](https://img.shields.io/badge/Version-2.6.2-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
@@ -201,6 +201,7 @@ Kubernetes: `>= 1.19.0-0`
201201
| postgresql.auth.secretKeys.userPasswordKey | The key in which Postgres will look for, for the user password, in the existing Secret | string | `"user-password"` |
202202
| postgresql.auth.username | Name for a custom user to create | string | `"bn_backstage"` |
203203
| postgresql.enabled | Switch to enable or disable the PostgreSQL helm chart | bool | `false` |
204+
| postgresql.image | Change default PostgreSQL image location (workaround for https://github.com/bitnami/charts/issues/35164) | object | `{"registry":"docker.io","repository":"bitnamilegacy/postgresql"}` |
204205
| service | Service parameters | object | See below |
205206
| service.annotations | Additional custom annotations for Backstage service | object | `{}` |
206207
| service.clusterIP | Backstage service Cluster IP <br /> E.g `clusterIP: None` | string | `""` |

charts/backstage/values.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -423,6 +423,11 @@ postgresql:
423423
# -- Switch to enable or disable the PostgreSQL helm chart
424424
enabled: false
425425

426+
# -- Change default PostgreSQL image location (workaround for https://github.com/bitnami/charts/issues/35164)
427+
image:
428+
registry: docker.io
429+
repository: bitnamilegacy/postgresql
430+
426431
# -- The authentication details of the Postgres database
427432
auth:
428433

0 commit comments

Comments
 (0)