kata-containers/tests/integration/kubernetes/runtimeclass_workloads/cron-job.yaml
Saul Paredes af598a232b tests: add test for cron job support
Add simple test for cron job support

Signed-off-by: Saul Paredes <saulparedes@microsoft.com>
2024-08-13 10:47:42 -07:00

15 lines
358 B
YAML

apiVersion: batch/v1
kind: CronJob
metadata:
name: cron-job-pi-test
spec:
schedule: "* * * * *"
jobTemplate:
spec:
template:
spec:
containers:
- name: pi
image: quay.io/prometheus/busybox:latest
command: ["/bin/sh", "-c", "echo 'scale=5; 4*a(1)' | bc -l"]
restartPolicy: OnFailure