We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbdb394 commit 67cb519Copy full SHA for 67cb519
Kubernetes/Kubernetes Demo Files/8.Jobs.txt
@@ -71,3 +71,11 @@ spec:
71
restartPolicy: Never
72
73
kubectl create -f cronjob.yaml
74
+
75
+kubectl patch cronjob cronjob -p '{"spec":{"suspend":false}}'
76
77
+concurrencyPolicy: Allow,Forbid,Replace
78
+Allow to allow multiple jobs runs at a time
79
+Forbid to wait a running job to finish first and then execute another instance of the job
80
+Replace to replace an existing job.
81
0 commit comments