Tip |
---|
You can skip this step if your Kubernetes deployment is on a single VM or physical system. |
...
Warning | ||
---|---|---|
| ||
More investigation is needed (as part of a multi-nodes Kubernetes cluser) as we're seeing a "Operation not permitted" error in the sdnc-dbhost pod when deploying an SDN-C cluster with the mounted /dockerdata-nfs from this instruction:
|
...
Code Block | ||||
---|---|---|---|---|
| ||||
sudo apt install nfs-common sudo mkdir /dockerdata-nfs sudo chmod 777 /dockerdata-nfs sudo mount -t nfs -o proto=tcp,port=2049 <host|IP of k8s-master master node vm>:/export/dockerdata-nfs /dockerdata-nfs nfs auto 0 0:/export/dockerdata-nfs /dockerdata-nfs sudo vi /etc/fstab # append "<host|IP of k8s master node vm>:/export/dockerdata-nfs /dockerdata-nfs nfs auto 0 0" |
...