Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

This step should be done on all sites that are part of kubernetes control plane (site-1 and site-2). It should be executed on each site's master node using root user. This will mount /dockerdata-nfs directory on each of site's master node.

root@k8s-s3-master:~# sudo mount -t nfs -o proto=tcp,port=2049 <ip address of federation kubernetes cluster master node>:/dockerdata-nfs /dockerdata-nfs
root@k8s-s3-master:~# sudo vi /etc/fstab
#append below line. The IP address could be that of federation server.
<hostname or IP address of NFS server>:/dockerdata-nfs /dockerdata-nfs    nfs    auto  0  0
root@k8s-s3-master: