mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-09 17:37:12 +00:00
56 lines
932 B
YAML
56 lines
932 B
YAML
|
apiVersion: v1
|
||
|
kind: Pod
|
||
|
metadata:
|
||
|
name: pod-without-emptydir-hostpath
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: nginx
|
||
|
image: nginx
|
||
|
---
|
||
|
apiVersion: v1
|
||
|
kind: Pod
|
||
|
metadata:
|
||
|
name: pod-with-emptydir-hostpath
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: nginx
|
||
|
image: nginx
|
||
|
volumes:
|
||
|
- name: demo-volume
|
||
|
emptyDir: {}
|
||
|
---
|
||
|
apiVersion: v1
|
||
|
kind: Pod
|
||
|
metadata:
|
||
|
name: pod-with-emptydir-hostpath-1
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: nginx
|
||
|
image: nginx
|
||
|
volumeMounts:
|
||
|
- mountPath: /cache
|
||
|
name: cache-volume
|
||
|
volumes:
|
||
|
- name: cache-volume
|
||
|
emptyDir:
|
||
|
sizeLimit: 500Mi
|
||
|
---
|
||
|
apiVersion: v1
|
||
|
kind: Pod
|
||
|
metadata:
|
||
|
name: pod-without-emptydir-hostpath-1
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: nginx
|
||
|
image: nginx
|
||
|
volumeMounts:
|
||
|
- name: config-vol
|
||
|
mountPath: /etc/config
|
||
|
volumes:
|
||
|
- name: config-vol
|
||
|
configMap:
|
||
|
name: log-config
|
||
|
items:
|
||
|
- key: log_level
|
||
|
path: log_level
|