put all of kubernaut's configuration in this repo

This commit is contained in:
2025-06-29 15:20:47 -05:00
parent 1da6a3cf2f
commit ece9c82bc6
7 changed files with 122 additions and 1 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