18 lines
293 B
YAML
18 lines
293 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: busybox-sleep
|
|
spec:
|
|
containers:
|
|
- name: busybox
|
|
image: busybox
|
|
args:
|
|
- sleep
|
|
- "1000000"
|
|
env:
|
|
- name: NICOTEST
|
|
value: "correct environment"
|
|
volumes:
|
|
- name: hostpathtest
|
|
hostPath:
|
|
path: /home
|