This repository has been archived on 2024-12-15. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
onechart/website/docs/examples/cron-job.md
T
2020-10-09 14:26:52 +02:00

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.