mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-10 18:06:55 +00:00
18 lines
344 B
YAML
18 lines
344 B
YAML
|
apiVersion: v1
|
||
|
kind: Pod
|
||
|
metadata:
|
||
|
name: image-with-hostpath
|
||
|
labels:
|
||
|
app.type: prod
|
||
|
namespace: "my-namespace"
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: image-with-hostpath
|
||
|
image: docker.io/nautiker/curl
|
||
|
volumeMounts:
|
||
|
- name: var-lib-etcd
|
||
|
mountPath: /var/lib
|
||
|
volumes:
|
||
|
- name: var-lib-etcd
|
||
|
hostPath:
|
||
|
path: /var/lib
|