I’m currently facing an issue using helm.
I’ve written a value template that contains a CroneJob, as follows:
...
custom_pipeline:
schedule: "0 21 * * *"
steps:
- name: test-cj
volume: True # True or False mount in "/app/persistent"
mountPath: "/app/ccc/"
image: test_cj
tag: "0.0.0"
env:
- name: DEBUG
valueFrom:
configMapKeyRef:
name: test-cj-config
key: DEBUG
...
When i make changes to the values of the CroneJob (custom_pipeline) and I apply them with:
# helm upgrade --install test-cj . --values=./helm_values/values_test_cj.yml -n test-cj
The CroneJob is automatically triggered even if i have specified a fixed schedule.
Has this ever happened to you?
Thanks in advance,
Fabio
Changed the restartPolicy settings, it didn’t worked.
New contributor
Fabio Bove is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.