mirror of
https://github.com/kyverno/kyverno.git
synced 2024-12-14 11:57:48 +00:00
41b24fb769
Signed-off-by: Batuhan Apaydın <batuhan.apaydin@trendyol.com>
17 lines
No EOL
359 B
YAML
17 lines
No EOL
359 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: pod-with-hostpath
|
|
annotations:
|
|
cluster-autoscaler.kubernetes.io/safe-to-evict: "true"
|
|
spec:
|
|
containers:
|
|
- image: registry.k8s.io/test-webserver
|
|
name: test-container
|
|
volumeMounts:
|
|
- mountPath: /tmp/foo
|
|
name: host-volume
|
|
volumes:
|
|
- name: host-volume
|
|
hostPath:
|
|
path: "/tmp/foo" |