mirror of
https://github.com/KevinMidboe/cloudflare-ddns.git
synced 2025-10-29 17:40:17 +00:00
18 lines
345 B
YAML
18 lines
345 B
YAML
apiVersion: batch/v1
|
|
kind: CronJob
|
|
metadata:
|
|
name: cloudflare-ddns-cronjob
|
|
namespace: cloudflare-ddns
|
|
spec:
|
|
schedule: "2 * * * *"
|
|
jobTemplate:
|
|
spec:
|
|
template:
|
|
spec:
|
|
containers:
|
|
- name: cf-ddns
|
|
image: ${IMAGE}
|
|
imagePullPolicy: IfNotPresent
|
|
restartPolicy: OnFailure
|
|
|