Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #16

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions kubernetes/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ The good things is that installation of a self-hosted Kubernetes cluster, contai
### Prerequisites

We'll assume you have a blank Ubuntu 20.04 / 22.04 LTS machine (or multiple machines/nodes) at your posession. We'll start with updating the Ubuntu operating system.
Please note that if you encounter the error `Interactive authentication required.`, simply add `sudo` to the beginning of every command to give them sufficient privilleges or run your Ubuntu as administrator.

apt-get update -y && apt-get upgrade -y

Expand Down Expand Up @@ -79,8 +80,8 @@ Enable and start crio:
After Container Engine being installed go ahead and install the different Kubernetes servicess and tools.

apt update -y
apt-gt install -y apt-transport-https ca-certificates curl
curl -s https://packages.cloud.google.com/apt/doc/apt-key.gpg | sudo apt-key add -
apt-get install -y apt-transport-https ca-certificates curl
curl sudo -s https://packages.cloud.google.com/apt/doc/apt-key.gpg | sudo apt-key add -
echo "deb https://apt.kubernetes.io/ kubernetes-xenial main" | sudo tee /etc/apt/sources.list.d/kubernetes.list

apt-get update
Expand Down