-
-
Save userbradley/6f1aedd06f62ad955893aaad561b94dc to your computer and use it in GitHub Desktop.
Sleeper
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: sleeper | |
spec: | |
containers: | |
- name: alpine | |
image: alpine:latest | |
# Just spin & wait forever | |
command: [ "/bin/sh", "-c", "--" ] | |
args: [ "while true; do sleep 30; done;" ] | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment