add a CronJob
All checks were successful
Ruby Lint / lint (push) Successful in 25s
Ruby Test / test (push) Successful in 17s
Release / docker (push) Successful in 20m22s

This commit is contained in:
2025-06-29 15:01:53 -05:00
parent b33d4d92ad
commit 01e4c38185
2 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,19 @@
apiVersion: batch/v1
kind: CronJob
metadata:
name: kubernaut
spec:
schedule: "* * * * *"
jobTemplate:
spec:
template:
spec:
containers:
- name: hello
image: busybox:1.37
imagePullPolicy: IfNotPresent
command:
- /bin/sh
- -c
- echo "=^.^= <(meow)"
restartPolicy: OnFailure

View File

@ -7,3 +7,4 @@ resources:
- deployment.yaml - deployment.yaml
- hpa.yaml - hpa.yaml
- services.yaml - services.yaml
- cronjob.yaml