mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-07-16 08:26:16 +00:00
Add simple test for cron job support Signed-off-by: Saul Paredes <saulparedes@microsoft.com>
15 lines
358 B
YAML
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 |