123456789101112131415161718192021222324252627282930313233 |
- kind: Deployment
- apiVersion: extensions/v1beta1
- metadata:
- name: nfs-client-provisioner
- spec:
- replicas: 1
- strategy:
- type: Recreate
- template:
- metadata:
- labels:
- app: nfs-client-provisioner
- spec:
- serviceAccountName: nfs-client-provisioner
- containers:
- - name: nfs-client-provisioner
- image: quay.io/external_storage/nfs-client-provisioner:latest
- volumeMounts:
- - name: nfs-client-root
- mountPath: /persistentvolumes
- env:
- - name: PROVISIONER_NAME
- value: fuseim.pri/ifs
- - name: NFS_SERVER
- value: 10.0.0.1
- - name: NFS_PATH
- value: /work/k8s
- volumes:
- - name: nfs-client-root
- nfs:
- server: 10.0.0.1
- path: /work/k8s
|