Created
February 22, 2023 23:47
-
-
Save andyrobbins/f54e1387f0a1b396fd827d4834f60ea9 to your computer and use it in GitHub Desktop.
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: command-demo-2 | |
labels: | |
purpose: demonstrate-command | |
spec: | |
containers: | |
- name: command-demo-container | |
image: debian | |
command: | |
- /bin/sh | |
- "-c" | |
- "sleep 60m" | |
restartPolicy: OnFailure |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment