mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-14 18:30:21 +00:00
33 lines
810 B
YAML
33 lines
810 B
YAML
|
# This mounts the nfs volume claim into /mnt and continuously
|
||
|
# overwrites /mnt/index.html with the time and hostname of the pod.
|
||
|
|
||
|
apiVersion: v1
|
||
|
kind: ReplicationController
|
||
|
metadata:
|
||
|
name: nfs-busybox
|
||
|
spec:
|
||
|
replicas: 2
|
||
|
selector:
|
||
|
name: nfs-busybox
|
||
|
template:
|
||
|
metadata:
|
||
|
labels:
|
||
|
name: nfs-busybox
|
||
|
spec:
|
||
|
containers:
|
||
|
- image: busybox
|
||
|
command:
|
||
|
- sh
|
||
|
- -c
|
||
|
- 'while true; do date > /mnt/index.html; hostname >> /mnt/index.html; sleep $(($RANDOM % 5 + 5)); done'
|
||
|
imagePullPolicy: IfNotPresent
|
||
|
name: busybox
|
||
|
volumeMounts:
|
||
|
# name must match the volume name below
|
||
|
- name: nfs
|
||
|
mountPath: "/mnt"
|
||
|
volumes:
|
||
|
- name: nfs
|
||
|
persistentVolumeClaim:
|
||
|
claimName: nfs
|