Skip to content

Instantly share code, notes, and snippets.

@sanjid133
Created January 20, 2020 11:09
Show Gist options
  • Save sanjid133/af21036171e8ea2185903fcd356f5d9d to your computer and use it in GitHub Desktop.
Save sanjid133/af21036171e8ea2185903fcd356f5d9d to your computer and use it in GitHub Desktop.
Kubernets demo pod
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