Skip to content

Commit db28839

Browse files
committed
chore: Unset deprecated .{web,worker}.image fields
This suppresses the deprecation notice, unless the user explicitly sets the deprecated fields. This change should be non-breaking, since we've set the image via `.Values.image` already.
1 parent 5cc2b27 commit db28839

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

charts/invenio/values.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -233,8 +233,8 @@ nginx:
233233
- ALL
234234

235235
web:
236-
image: "ghcr.io/inveniosoftware/demo-inveniordm/demo-inveniordm:v12.0.0-beta.1.3"
237-
imagePullSecret: ""
236+
image: "" # DEPRECATED: Use `.Values.image` instead!
237+
imagePullSecret: "" # DEPRECATED: Use `.Values.image.imagePullSecrets` instead!
238238
replicas: 6
239239
terminationGracePeriodSeconds: 60
240240
uwsgi:
@@ -357,8 +357,8 @@ web:
357357

358358
worker:
359359
enabled: true
360-
image: "ghcr.io/inveniosoftware/demo-inveniordm/demo-inveniordm:v12.0.0-beta.1.3"
361-
imagePullSecret: ""
360+
image: "" # DEPRECATED: Use `.Values.image` instead!
361+
imagePullSecret: "" # DEPRECATED: Use `.Values.image.imagePullSecrets` instead!
362362
app: invenio_app.celery
363363
concurrency: 2
364364
log_level: INFO

0 commit comments

Comments
 (0)