You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
527 B
YAML
24 lines
527 B
YAML
apiVersion: batch/v1
|
|
kind: CronJob
|
|
metadata:
|
|
name: wp-cron
|
|
spec:
|
|
schedule: "30 * * * *"
|
|
concurrencyPolicy: Forbid
|
|
jobTemplate:
|
|
spec:
|
|
template:
|
|
metadata:
|
|
labels:
|
|
workload: cronjob
|
|
type: wordpress
|
|
spec:
|
|
containers:
|
|
- name: wp-cron
|
|
image: rancher/curlimages-curl:7.73.0
|
|
imagePullPolicy: IfNotPresent
|
|
command:
|
|
- /bin/sleep
|
|
- "3600"
|
|
restartPolicy: OnFailure
|