Exported on 25-Sep-2021 13:40:50
Parameters
1 - Install Docker - CentOS
Installs and configures Docker community edition.
The connection details have changed from the last step.
Login as user {Linux User} on node {Linux Node}
# Update yum repository
sudo yum check-update
# Install docker
curl -fsSL https://get.docker.com/ | sh
2 - Start and Enable Docker Service
Configures docker to launch at startup and starts the service.
Login as user {Linux User} on node {Linux Node}
# Enable docker
sudo systemctl enable docker
sudo systemctl start docker
sudo systemctl status docker
3 - Upload Kubernetes Repo Config
Uploads Kubernetes repo config file for yum.
Login as user {Linux User} on node {Linux Node}
Deploy archive
kubernetes.repo.zip
to remote path
uploads
4 - Install Kubernetes Tools
Installs Kubernetes tools, used to launch and manage Kubernetes clusters.
Login as user {Linux User} on node {Linux Node}
# Move repo file
sudo mv ~/uploads/kubernetes.repo /etc/yum.repos.d/
# Install Kubernetes tools
sudo yum -y install kubeadm
kubeadm version
Install Kubernetes on CentOS Linux
This Blueprint Installs Kubernetes on CentOS based operating systems
Kubernetes, also known as K8s, is an open source system that automates the deployment and management of containerized applications. Kubernetes builds upon a decade and a half of experience that the original developers of Google's Borg Project brought to this problem space. It was initially designed by engineers who had worked on Borg (and Google's other container platform, Omega), and who had built the tooling required to deploy and operate services such as Gmail, Search and Google Maps. The Kubernetes open source community has been driven by significant contributions from both individual volunteers and large companies such as Google, Red Hat, IBM and Microsoft.
Pre-Blueprint Attune setup
Supported Operating Systems:
Steps Involved