31 lines
447 B
Markdown
31 lines
447 B
Markdown
OneChart settings for deploying a cron job:
|
|
|
|
```yaml
|
|
image:
|
|
repository: debian
|
|
tag: stable-slim
|
|
|
|
schedule: "0 1 0 0 0"
|
|
command: |
|
|
echo "hello"
|
|
```
|
|
|
|
Check the Kubernetes manifest:
|
|
|
|
```bash
|
|
cat << EOF > values.yaml
|
|
image:
|
|
repository: debian
|
|
tag: stable-slim
|
|
|
|
schedule: "0 1 0 0 0"
|
|
command: |
|
|
echo "hello"
|
|
EOF
|
|
|
|
helm template my-release onechart/cron-job -f values.yaml
|
|
```
|
|
|
|
!!! warning
|
|
Make sure to use the `onechart/cron-job` chart.
|