Skip to content

Instantly share code, notes, and snippets.

@rjhowe
Created June 8, 2017 20:14
Show Gist options
  • Save rjhowe/46c99e53b742fa4a50bed69fad973aab to your computer and use it in GitHub Desktop.
Save rjhowe/46c99e53b742fa4a50bed69fad973aab to your computer and use it in GitHub Desktop.
Sleeping Pod
apiVersion: v1
kind: Pod
metadata:
name: sleep-test-pod
spec:
containers:
- name: sleep-test-container
image: rhel7
command: [ "/bin/bash", "-c", "--" ]
args: [ "while true; do sleep 30; done;" ]
restartPolicy: Never
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment