Skip to content

Commit a088f10

Browse files
authored
Default to upstream image (#15)
Resolves #12
1 parent 55e12fd commit a088f10

File tree

4 files changed

+8
-13
lines changed

4 files changed

+8
-13
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ This chart bootstraps a [Backstage](https://backstage.io/docs/deployment/docker)
2020
- Kubernetes 1.19+
2121
- Helm 3.2.0+
2222
- PV provisioner support in the underlying infrastructure
23-
- [Backstage container image](https://backstage.io/docs/deployment/docker)
23+
- [Backstage container image](https://backstage.io/docs/deployment/docker) (by default this chart deploys vanilla upstream image without any modifications, users are encouraged to supply their own image)
2424

2525
## Installing the Chart
2626

@@ -72,9 +72,9 @@ The command removes all the Kubernetes components associated with the chart and
7272

7373
| Name | Description | Value |
7474
| ------------------------------- | -------------------------------------------------------------------- | --------------------------------------------------------------------------- |
75-
| `backstage.image.registry` | Backstage image registry | `""` |
76-
| `backstage.image.repository` | Backstage image repository (required) | `""` |
77-
| `backstage.image.tag` | Backstage image tag (required immutable tags are recommended) | `""` |
75+
| `backstage.image.registry` | Backstage image registry | `ghcr.io` |
76+
| `backstage.image.repository` | Backstage image repository (required) | `backstage/backstage` |
77+
| `backstage.image.tag` | Backstage image tag (required immutable tags are recommended) | `latest` |
7878
| `backstage.image.pullPolicy` | Backstage image pull policy | `IfNotPresent` |
7979
| `backstage.image.pullSecrets` | Specify docker-registry secret names as an array | `[]` |
8080
| `backstage.command` | Override Backstage container command | `["node", "packages/backend"]` |

charts/backstage/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.5.2
18+
version: 0.5.3
1919

2020
dependencies:
2121
- name: common

charts/backstage/ci/ci-values.yaml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +0,0 @@
1-
backstage:
2-
image:
3-
registry: ghcr.io
4-
repository: janus-idp/redhat-backstage-build
5-
tag: latest

charts/backstage/values.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,9 @@ ingress:
8686

8787
backstage:
8888
image:
89-
registry: ""
90-
repository: ""
91-
tag: ""
89+
registry: ghcr.io
90+
repository: backstage/backstage
91+
tag: latest
9292
## Specify a imagePullPolicy
9393
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
9494
## ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images

0 commit comments

Comments
 (0)