Skip to content

fix: Use correct default image values #181

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/invenio/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: invenio
appVersion: v12.0.10
appVersion: 12.0.10
description: Turn-key research data management platform.
home: https://inveniosoftware.org/
icon: https://inveniosoftware.org/static/img/logo-invenio-white.svg
Expand Down
14 changes: 7 additions & 7 deletions charts/invenio/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ fullnameOverride: ""
## @param image.pullPolicy Invenio image pull policy
## @param image.pullSecrets Invenio image pull secrets
image:
registry: ghrc.io
repository: inveniosoftware/demo-inveniordm
tag: demo-inveniordm:12.0.10
registry: ghcr.io/inveniosoftware
repository: demo-inveniordm/demo-inveniordm
tag: "" # Defaults to .Chart.appVersion
digest: ""
## Specify a imagePullPolicy
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
Expand Down Expand Up @@ -233,8 +233,8 @@ nginx:
- ALL

web:
image: "ghcr.io/inveniosoftware/demo-inveniordm/demo-inveniordm:v12.0.0-beta.1.3"
imagePullSecret: ""
image: "" # DEPRECATED: Use `.Values.image` instead!
imagePullSecret: "" # DEPRECATED: Use `.Values.image.imagePullSecrets` instead!
replicas: 6
terminationGracePeriodSeconds: 60
uwsgi:
Expand Down Expand Up @@ -357,8 +357,8 @@ web:

worker:
enabled: true
image: "ghcr.io/inveniosoftware/demo-inveniordm/demo-inveniordm:v12.0.0-beta.1.3"
imagePullSecret: ""
image: "" # DEPRECATED: Use `.Values.image` instead!
imagePullSecret: "" # DEPRECATED: Use `.Values.image.imagePullSecrets` instead!
app: invenio_app.celery
concurrency: 2
log_level: INFO
Expand Down