1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-06 07:57:07 +00:00
kyverno/test/output/pod-with-hostpath.yaml

18 lines
368 B
YAML
Raw Normal View History

2019-11-05 15:32:45 -08:00
apiVersion: v1
kind: Pod
metadata:
name: pod-with-hostpath
metadata:
annotations:
cluster-autoscaler.kubernetes.io/safe-to-evict: true
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"