Switch to curl, remove code formatting on the product names, use OS family name on tabs

This commit is contained in:
Terry Moschou
2021-03-09 11:47:15 +10:30
parent 21382af32e
commit b1686cc43a
3 changed files with 25 additions and 24 deletions
@@ -180,13 +180,13 @@ For more information on version skews, see:
```shell
sudo apt-get update
sudo apt-get install -y apt-transport-https ca-certificates wget
sudo apt-get install -y apt-transport-https ca-certificates curl
```
2. Download the Google Cloud public signing key:
```shell
sudo wget -O /usr/share/keyrings/kubernetes-archive-keyring.gpg https://packages.cloud.google.com/apt/doc/apt-key.gpg
sudo curl -fsSLo /usr/share/keyrings/kubernetes-archive-keyring.gpg https://packages.cloud.google.com/apt/doc/apt-key.gpg
```
3. Add the Kubernetes `apt` repository:
@@ -195,7 +195,7 @@ For more information on version skews, see:
echo "deb [signed-by=/usr/share/keyrings/kubernetes-archive-keyring.gpg] https://apt.kubernetes.io/ kubernetes-xenial main" | sudo tee /etc/apt/sources.list.d/kubernetes.list
```
4. Update `apt` package index, install `kubelet`, `kubeadm` and `kubectl`, and pin their version:
4. Update `apt` package index, install kubelet, kubeadm and kubectl, and pin their version:
```shell
sudo apt-get update