24 lines
555 B
YAML
24 lines
555 B
YAML
apiVersion: batch/v1
|
|
kind: CronJob
|
|
metadata:
|
|
name: check-new-royalroad-chapters
|
|
namespace: app-notifications
|
|
spec:
|
|
schedule: "*/15 * * * *"
|
|
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
|