Skip to content

Commit d734143

Browse files
committed
fix: Use correct default image values
- Use `12.0.10` instead of `v12.0.10` in `appVersion`, so it's compliant with the tag of the default image. - Fix typo ghrc.io --> ghcr.io - Fix typo where image name was part of the tag. - DRY: Unset the `tag` value, so we default to using `appVersion`.
1 parent e90f5f5 commit d734143

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

charts/invenio/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v2
22
name: invenio
3-
appVersion: v12.0.10
3+
appVersion: 12.0.10
44
description: Turn-key research data management platform.
55
home: https://inveniosoftware.org/
66
icon: https://inveniosoftware.org/static/img/logo-invenio-white.svg

charts/invenio/values.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ fullnameOverride: ""
1919
## @param image.pullPolicy Invenio image pull policy
2020
## @param image.pullSecrets Invenio image pull secrets
2121
image:
22-
registry: ghrc.io
23-
repository: inveniosoftware/demo-inveniordm
24-
tag: demo-inveniordm:12.0.10
22+
registry: ghcr.io/inveniosoftware
23+
repository: demo-inveniordm/demo-inveniordm
24+
tag: "" # Defaults to .Chart.appVersion
2525
digest: ""
2626
## Specify a imagePullPolicy
2727
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'

0 commit comments

Comments
 (0)