22 lines
470 B
YAML
22 lines
470 B
YAML
|
apiVersion: apps/v1
|
||
|
kind: Deployment
|
||
|
metadata:
|
||
|
labels:
|
||
|
app: nfs-client-provisioner
|
||
|
name: nfs-client-provisioner
|
||
|
spec:
|
||
|
template:
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: nfs-client-provisioner
|
||
|
env:
|
||
|
- name: NFS_SERVER
|
||
|
value: 192.168.10.30
|
||
|
- name: NFS_PATH
|
||
|
value: /srv/nfs4
|
||
|
volumes:
|
||
|
- name: nfs-client-root
|
||
|
nfs:
|
||
|
server: 192.168.10.30
|
||
|
path: /srv/nfs4
|