1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-05 23:46:56 +00:00
kyverno/test/output/pod-with-hostpath.yaml

17 lines
359 B
YAML
Raw Normal View History

2019-11-05 15:32:45 -08:00
apiVersion: v1
kind: Pod
metadata:
name: pod-with-hostpath
annotations:
cluster-autoscaler.kubernetes.io/safe-to-evict: "true"
2019-11-05 15:32:45 -08:00
spec:
containers:
- image: registry.k8s.io/test-webserver
2019-11-05 15:32:45 -08:00
name: test-container
volumeMounts:
- mountPath: /tmp/foo
name: host-volume
volumes:
- name: host-volume
hostPath:
path: "/tmp/foo"