From a4c3f1baed1ed4294133d377d32acf73e715249a Mon Sep 17 00:00:00 2001 From: michaelolear <75473730+michaelolear@users.noreply.github.com> Date: Tue, 14 May 2024 13:49:30 -0400 Subject: [PATCH] Update Installing Kubeadm, Kubelet, and Kubectl.txt --- Installing Kubeadm, Kubelet, and Kubectl.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Installing Kubeadm, Kubelet, and Kubectl.txt b/Installing Kubeadm, Kubelet, and Kubectl.txt index 305e883..2c9346f 100644 --- a/Installing Kubeadm, Kubelet, and Kubectl.txt +++ b/Installing Kubeadm, Kubelet, and Kubectl.txt @@ -1,21 +1,21 @@ # CHAPTER 2.4 - Installing Kubeadm, Kubelet, and Kubectl # https://learn.acloud.guru/course/2e0bad96-a602-4c91-9da2-e757d32abb8f/learn/56bea242-4b92-4bcb-ad80-f974467c8d7a/097bb262-1d4a-4870-9d1c-498ad730c348/watch +# For this lesson, we recommend creating 3 Ubuntu 22.04 - Jammy Jellyfish servers with 3 units each. + # Here are the commands used to install the Kubernetes components in this lesson. Run these on all three servers. # Install dependency packages: -sudo apt-get update && sudo apt-get install -y apt-transport-https curl +sudo apt-get update && sudo apt-get install -y apt-transport-https ca-certificates curl # Download and add GPG key: -curl -s https://packages.cloud.google.com/apt/doc/apt-key.gpg | sudo apt-key add - +curl -fsSL https://pkgs.k8s.io/core:/stable:/v1.27/deb/Release.key | sudo gig --dearmor -o /etc/apt/keyrings/kubernetes-apt.keyring.gpg # Add Kubernetes to repository list: -cat <