Created
June 8, 2017 20:14
-
-
Save rjhowe/46c99e53b742fa4a50bed69fad973aab to your computer and use it in GitHub Desktop.
Sleeping Pod
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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