Skip to content

Instantly share code, notes, and snippets.

@jdob
Created April 17, 2020 18:50
Show Gist options
  • Save jdob/d815507f5432d28ffc0f777b86194aa6 to your computer and use it in GitHub Desktop.
Save jdob/d815507f5432d28ffc0f777b86194aa6 to your computer and use it in GitHub Desktop.
apiVersion: v1
kind: Pod
metadata:
name: hydra
spec:
volumes:
- name: shared-data
emptyDir: {}
containers:
- name: hydra1
image: alpine:latest
command: ['/bin/sleep', '300']
volumeMounts:
- name: shared-data
mountPath: /mnt/shared
- name: hydra2
image: alpine:latest
command: ['/bin/sleep', '300']
volumeMounts:
- name: shared-data
mountPath: /mnt/shared
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment