Skip to content

Commit 974c460

Browse files
committed
fix: Set default probes to null not {}
Turns out that `{}` is an invalid default value for probes. Thought I had tested this, but apparently not. 🙄
1 parent 6b8d615 commit 974c460

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

charts/invenio/values.yaml

+8-8
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ web:
276276
timeoutSeconds: 5
277277
## @param web.livenessProbe templated `livenessProbe` for the web container
278278
##
279-
livenessProbe: {}
279+
livenessProbe: null
280280
assets:
281281
location: /opt/invenio/var/instance/static
282282
## @param web.resources `resources` for the web container
@@ -427,10 +427,10 @@ worker:
427427
timeoutSeconds: 30
428428
## @param worker.readinessProbe templated `readinessProbe` for the worker container
429429
##
430-
readinessProbe: {}
430+
readinessProbe: null
431431
## @param worker.startupProbe templated `startupProbe` for the worker container
432432
##
433-
startupProbe: {}
433+
startupProbe: null
434434

435435
workerBeat:
436436
## @param workerBeat.extraEnvVars Extra environment variables to be added to the pods.
@@ -492,10 +492,10 @@ workerBeat:
492492
timeoutSeconds: 30
493493
## @param workerBeat.readinessProbe templated `readinessProbe` for the worker-beat container
494494
##
495-
readinessProbe: {}
495+
readinessProbe: null
496496
## @param workerBeat.startupProbe templated `startupProbe` for the worker-beat container
497497
##
498-
startupProbe: {}
498+
startupProbe: null
499499

500500
persistence:
501501
enabled: true
@@ -583,13 +583,13 @@ flower:
583583
tolerations: []
584584
## @param flower.livenessProbe templated `livenessProbe` for the flower-management container
585585
##
586-
livenessProbe: {}
586+
livenessProbe: null
587587
## @param flower.readinessProbe templated `readinessProbe` for the flower-management container
588588
##
589-
readinessProbe: {}
589+
readinessProbe: null
590590
## @param flower.startupProbe templated `startupProbe` for the flower-management container
591591
##
592-
startupProbe: {}
592+
startupProbe: null
593593

594594
## PostgreSQL chart configuration
595595
## ref: https://github.com/bitnami/charts/blob/main/bitnami/postgresql/values.yaml

0 commit comments

Comments
 (0)