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.
21 lines
528 B
YAML
21 lines
528 B
YAML
apiVersion: batch/v1
|
|
kind: CronJob
|
|
metadata:
|
|
name: wp-cron
|
|
spec:
|
|
schedule: "30 * * * *"
|
|
concurrencyPolicy: Forbid
|
|
jobTemplate:
|
|
spec:
|
|
template:
|
|
spec:
|
|
containers:
|
|
- name: wp-cron
|
|
image: busybox:1.28
|
|
imagePullPolicy: IfNotPresent
|
|
command:
|
|
- /bin/wget
|
|
- --no-check-certificate
|
|
- -q
|
|
- "https://{{ .Values.smardigo-wordpress.wordpress.ingress.hostname }}/wp-admin.php"
|
|
restartPolicy: OnFailure |