mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-06 07:57:07 +00:00
14 lines
260 B
YAML
14 lines
260 B
YAML
|
apiVersion: v1
|
||
|
kind: Pod
|
||
|
metadata:
|
||
|
name: pod-with-emptydir
|
||
|
spec:
|
||
|
containers:
|
||
|
- image: k8s.gcr.io/test-webserver
|
||
|
name: test-container
|
||
|
volumeMounts:
|
||
|
- mountPath: /cache
|
||
|
name: cache-volume
|
||
|
volumes:
|
||
|
- name: cache-volume
|
||
|
emptyDir: {}
|