ops-deployment/service-royalroad-chapters/cron-check-new-royalroad-chapters.yaml
2025-10-30 09:37:55 +01:00

24 lines
558 B
YAML

apiVersion: batch/v1
kind: CronJob
metadata:
name: check-new-royalroad-chapters
namespace: app-notifications
spec:
schedule: "5-59/10 * * * *"
successfulJobsHistoryLimit: 1
failedJobsHistoryLimit: 1
jobTemplate:
spec:
template:
spec:
containers:
- name: curl
image: curlimages/curl:latest
command: ["curl"]
args:
- -s
- -X
- GET
- http://service-royalroad-chapters-internal:5000/royalroad
restartPolicy: OnFailure