An Nginx pod with the local /etc/minimount directory mounted as /etc/minimount to be run in Minikube (note that zero parameters need to be passed when starting Minikube for this to work).
apiVersion: v1 | |
kind: Pod | |
metadata: | |
creationTimestamp: null | |
labels: | |
run: nginx-minimounted | |
name: nginx-minimounted | |
namespace: myns | |
spec: | |
containers: | |
- image: nginx | |
name: nginx-minimounted | |
resources: {} | |
volumeMounts: | |
- mountPath: /etc/minimounted | |
name: minimounted | |
volumes: | |
- name: minimounted | |
hostPath: | |
path: /Users/thospfuller/k8s-study/minimounted | |
dnsPolicy: ClusterFirst | |
restartPolicy: Never | |
status: {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment