Skip to content

Instantly share code, notes, and snippets.

@cglacet
Created October 19, 2020 15:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cglacet/4e4d28facad1ac09eaa6e0fabb0a47ee to your computer and use it in GitHub Desktop.
Save cglacet/4e4d28facad1ac09eaa6e0fabb0a47ee to your computer and use it in GitHub Desktop.
# https://kubernetes.io/docs/concepts/workloads/controllers/job/
apiVersion: batch/v1
kind: Job
metadata:
name: test
spec:
ttlSecondsAfterFinished: 0
activeDeadlineSeconds: 200
template:
spec:
restartPolicy: Never
containers:
- name: test
image: python:3.8.0-slim-buster
imagePullPolicy: IfNotPresent
command: ["ls"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment