Skip to content

Instantly share code, notes, and snippets.

@rdpanek
Created March 6, 2020 19:48
Show Gist options
  • Save rdpanek/54fa793a77f9b334eb823a188280347c to your computer and use it in GitHub Desktop.
Save rdpanek/54fa793a77f9b334eb823a188280347c to your computer and use it in GitHub Desktop.
shell-kube-demo.yaml
apiVersion: v1
kind: Pod
metadata:
name: shell-demo
spec:
volumes:
- name: shared-data
emptyDir: {}
containers:
- name: nginx
image: nginx
volumeMounts:
- name: shared-data
mountPath: /usr/share/nginx/html
hostNetwork: true
dnsPolicy: Default
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment