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.
22 lines
541 B
YAML
22 lines
541 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://{{ index .Values "smardigo-wordpress" "wordpress" "ingress" "hostname" }}/wp-admin.php
|
|
restartPolicy: OnFailure
|