21 lines
356 B
YAML
21 lines
356 B
YAML
---
|
|
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: busybox
|
|
labels:
|
|
app: busybox
|
|
spec:
|
|
containers:
|
|
- image: busybox
|
|
name: busybox
|
|
command:
|
|
- sleep
|
|
- "3600"
|
|
volumeMounts:
|
|
- name: data
|
|
mountPath: "/data"
|
|
volumes:
|
|
- name: data
|
|
persistentVolumeClaim:
|
|
claimName: technitium-data-pvc |