mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-06 16:06:56 +00:00
15 lines
281 B
YAML
15 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"
|