1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-06 07:57:07 +00:00
kyverno/test/resources/pod-with-hostpath.yaml
2019-11-05 15:32:45 -08:00

15 lines
281 B
YAML

apiVersion: v1
kind: Pod
metadata:
name: pod-with-hostpath
spec:
containers:
- image: k8s.gcr.io/test-webserver
name: test-container
volumeMounts:
- mountPath: /tmp/foo
name: host-volume
volumes:
- name: host-volume
hostPath:
path: "/tmp/foo"