Created
January 20, 2020 11:09
-
-
Save sanjid133/af21036171e8ea2185903fcd356f5d9d to your computer and use it in GitHub Desktop.
Kubernets demo 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: myapp-pod | |
labels: | |
app: myapp | |
spec: | |
containers: | |
- name: myapp-container | |
image: busybox | |
command: ['sh', '-c', 'echo Hello Kubernetes! && sleep 3600'] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment