Cron Job
OneChart settings for deploying a cron job:
image:
repository: debian
tag: stable-slim
schedule: "0 1 0 0 0"
command: |
echo "hello"
Check the Kubernetes manifest:
cat << EOF > values.yaml
image:
repository: debian
tag: stable-slim
schedule: "*/1 * * * *"
command: |
echo "hello"
EOF
helm template my-release onechart/cron-job -f values.yaml