mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-07 08:26:53 +00:00
16 lines
281 B
YAML
16 lines
281 B
YAML
|
apiVersion: v1
|
||
|
kind: Pod
|
||
|
metadata:
|
||
|
name: pod-with-hostpath
|
||
|
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"
|