Update k8s-cronjob.md

Fix formatting of yaml example.
This commit is contained in:
Plux Stahre 2024-09-29 03:39:22 +02:00 committed by GitHub
parent 091e2afe1e
commit 8f9ef82fc9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -20,10 +20,10 @@ kind: CronJob
metadata: metadata:
name: fedifetcher name: fedifetcher
spec: spec:
schedule: "*/15 * * * *" schedule: "*/15 * * * *" # Run every 15 minutes
failedJobsHistoryLimit: 5 failedJobsHistoryLimit: 5 # Keep history of failed jobs
successfulJobsHistoryLimit: 5 successfulJobsHistoryLimit: 5 # Keep history of successful jobs
concurrencyPolicy: Forbid concurrencyPolicy: Forbid # Do not allow concurrent jobs
jobTemplate: jobTemplate:
spec: spec:
template: template:
@ -38,11 +38,6 @@ spec:
value: "200" value: "200"
- name: FF_MAX_FOLLOWERS - name: FF_MAX_FOLLOWERS
value: "10" value: "10"
# Add any other options below as described in in the README.md file
# If you don't want to use a PVC you may comment the next two lines, but that will significantly
# affect performance, and is NOT recommended
- name: FF_STATE_DIR - name: FF_STATE_DIR
value: "/data/" value: "/data/"
- name: FF_SERVER - name: FF_SERVER
@ -50,22 +45,17 @@ spec:
secretKeyRef: secretKeyRef:
name: fedifetcher name: fedifetcher
key: server_domain key: server_domain
optional: false
- name: FF_ACCESS_TOKEN - name: FF_ACCESS_TOKEN
valueFrom: valueFrom:
secretKeyRef: secretKeyRef:
name: fedifetcher name: fedifetcher
key: token key: token
optional: false
# Comment the lines below if you do not use a PVC, but that will significantly
# affect performance and is NOT recommended
volumeMounts: volumeMounts:
- mountPath: /data - name: fedifetcher-storage
name: fedifetcher mountPath: /data
readOnly: false
volumes: volumes:
- name: fedifetcher - name: fedifetcher-storage
persistentVolumeClaim: persistentVolumeClaim:
claimName: fedifetcher claimName: fedifetcher-pvc
``` ```