Workers prod

This commit is contained in:
Jorge Sánchez
2024-10-01 18:28:01 -05:00
parent 8a2b9d90d4
commit bbfc836c6b
16 changed files with 319 additions and 1 deletions

View File

@@ -0,0 +1,20 @@
apiVersion: batch/v1beta1
kind: CronJob
metadata:
name: dev-workers-cronjob
spec:
schedule: "*/1 * * * *"
jobTemplate:
metadata:
name: hello
spec:
template:
spec:
containers:
- name: hello
image: busybox
command:
- /bin/sh
- -c
- date; echo Hello from the Kubernetes cluster
restartPolicy: OnFailure