mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-05-05 08:26:58 +00:00
21 lines
350 B
YAML
21 lines
350 B
YAML
kind: Pod
|
|
apiVersion: v1
|
|
metadata:
|
|
generateName: mounter-
|
|
labels:
|
|
container.training/mounter: ""
|
|
spec:
|
|
volumes:
|
|
- name: pvc
|
|
persistentVolumeClaim:
|
|
claimName: my-pvc-XYZ45
|
|
containers:
|
|
- name: mounter
|
|
image: alpine
|
|
stdin: true
|
|
tty: true
|
|
volumeMounts:
|
|
- name: pvc
|
|
mountPath: /pvc
|
|
workingDir: /pvc
|