Kubernetes Job Manifest: Difference between revisions
Jump to navigation
Jump to search
Line 5: | Line 5: | ||
* [[Kubernetes_Job#Kubernetes_Job_Manifest|Kubernetes Job]] | * [[Kubernetes_Job#Kubernetes_Job_Manifest|Kubernetes Job]] | ||
=Overview= | =Overview= | ||
=Example= | =Example= |
Revision as of 21:04, 14 July 2023
External
Internal
Overview
Example
apiVersion: batch/v1 kind: Job metadata: name: test-job spec: completions: 1 backoffLimit: 0 template: spec: containers: - name: test-container image: docker.com/some-image:1.0.0 command: ["some-command", "test"] restartPolicy: Never
.metadata Elements
.spec Elements
completions
backoffLimit
Specifies the number of retries before marking this job failed. Defaults to 6. Retries are counted in addition to the initial execution.