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-emptydir.yaml

17 lines
340 B
YAML
Raw Normal View History

2019-11-04 17:55:13 -08:00
apiVersion: v1
kind: Pod
metadata:
name: pod-with-emptydir
2019-11-11 21:40:42 -08:00
annotations:
cluster-autoscaler.kubernetes.io/safe-to-evict: "true"
2019-11-04 17:55:13 -08:00
spec:
containers:
- image: registry.k8s.io/test-webserver
2019-11-04 17:55:13 -08:00
name: test-container
volumeMounts:
- mountPath: /cache
name: cache-volume
volumes:
- name: cache-volume
emptyDir: {}