diff --git a/docs/02-kubelet.md b/docs/02-kubelet.md index 335cd7d..fd8d696 100644 --- a/docs/02-kubelet.md +++ b/docs/02-kubelet.md @@ -23,8 +23,7 @@ So, let's begin. First of all, we need to download kubelet. ```bash wget -q --show-progress --https-only --timestamping \ - https://dl.k8s.io/v1.32.3/kubernetes-node-linux-amd64.tar.gz - + https://dl.k8s.io/v1.32.3/bin/linux/amd64/kubelet tar -xvzf kubernetes-node-linux-amd64.tar.gz ``` diff --git a/docs/04-etcd.md b/docs/04-etcd.md index d9e2aeb..6db602e 100644 --- a/docs/04-etcd.md +++ b/docs/04-etcd.md @@ -38,7 +38,7 @@ After the tools are installed successfully, we need to generate ca certificate. A ca (Certificate Authority) certificate, also known as a root certificate or a trusted root certificate, is a digital certificate that is used to verify the authenticity of other certificates. ```bash { -cat > ca-config.json < ca-config.json < ca-csr.json < kubernetes-csr.json < service-account-csr.json < pod.yaml apiVersion: v1 @@ -261,6 +258,7 @@ metadata: name: hello-world spec: serviceAccountName: hello-world + terminationGracePeriodSeconds: 1 containers: - name: hello-world-container image: busybox diff --git a/docs/06-apiserver-kubelet.md b/docs/06-apiserver-kubelet.md index 958bc08..a238079 100644 --- a/docs/06-apiserver-kubelet.md +++ b/docs/06-apiserver-kubelet.md @@ -10,8 +10,8 @@ Again we will start this part with the creation of the certificates which will b ```bash { -HOST_NAME=$(hostname -a) -cat > kubelet-csr.json < nginx-deployment.yml +cat < pod.yaml +cat < rbac-create.yml +cat < nginx-service.yml +cat < kube-proxy-csr.json <