mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-11 00:40:23 +00:00
31 lines
660 B
YAML
31 lines
660 B
YAML
|
# This pod mounts the nfs volume claim into /usr/share/nginx/html and
|
||
|
# serves a simple web page.
|
||
|
|
||
|
apiVersion: v1
|
||
|
kind: ReplicationController
|
||
|
metadata:
|
||
|
name: nfs-web
|
||
|
spec:
|
||
|
replicas: 2
|
||
|
selector:
|
||
|
role: web-frontend
|
||
|
template:
|
||
|
metadata:
|
||
|
labels:
|
||
|
role: web-frontend
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: web
|
||
|
image: nginx
|
||
|
ports:
|
||
|
- name: web
|
||
|
containerPort: 80
|
||
|
volumeMounts:
|
||
|
# name must match the volume name below
|
||
|
- name: nfs
|
||
|
mountPath: "/usr/share/nginx/html"
|
||
|
volumes:
|
||
|
- name: nfs
|
||
|
persistentVolumeClaim:
|
||
|
claimName: nfs
|