From f299628e015bd5131d973cfd6e23a8ac404237bf Mon Sep 17 00:00:00 2001 From: Sambo Chea <7059827+sombochea@users.noreply.github.com> Date: Mon, 11 Oct 2021 09:27:55 +0700 Subject: [PATCH 1/3] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 88b7c92..e92ca69 100644 --- a/README.md +++ b/README.md @@ -251,8 +251,9 @@ chmod o-r ~/.kube/config chmod g-r ~/.kube/config ``` -#### Install kubectl for Windows +#### Install kubectl and helm for Windows - https://kubernetes.io/docs/tasks/tools/install-kubectl-windows/ +- https://helm.sh/docs/intro/install/ #### References - https://kubernetes.io/docs/setup/production-environment/container-runtimes/#docker From 3f1481a44f1fa32c4ec3b50ac7b977aa89114284 Mon Sep 17 00:00:00 2001 From: Sambo Chea <7059827+sombochea@users.noreply.github.com> Date: Mon, 11 Oct 2021 10:59:51 +0700 Subject: [PATCH 2/3] Update README.md --- README.md | 60 +++++++++++++++++++++++++++---------------------------- 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/README.md b/README.md index e92ca69..d0e42a3 100644 --- a/README.md +++ b/README.md @@ -88,7 +88,36 @@ sudo systemctl enable --now kubelet ```shell kubeadm version ``` -### 5. Configure containerd + +### 5. Disable swap and install docker.io +```shell +sudo swapoff -a +wget https://sh.osa.cubetiqs.com/docker-setup.sh +bash docker-setup.sh +sudo systemctl start docker +sudo systemctl enable docker + +cat < Date: Mon, 11 Oct 2021 11:28:47 +0700 Subject: [PATCH 3/3] Update README.md --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index d0e42a3..0a7dca6 100644 --- a/README.md +++ b/README.md @@ -189,6 +189,12 @@ kubectl apply -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.3.1/a ``` #### Deploy Storage Class with External NFS server +- Install nfs client for all nodes +```shell +sudo apt install nfs-common -y +``` + +- Install NFS External Provider ```shell helm repo add nfs-subdir-external-provisioner https://kubernetes-sigs.github.io/nfs-subdir-external-provisioner ```