Skip to main content

Posts

Showing posts from October 6, 2019

INSTALLING K8S AS A CLUSTER USING KUBEADM

############################################################################# Step1: We need multiple systems or VM s created for configuring multinode cluster. Step2: Install container runtime engine (docker) on all the master and worker nodes. Step3: Install kubeadm ( Pronounced as kubeadmin) on all the master and worker nodes. Step4: Initialize the master server in the Master node. Step5: Make sure a POD Network connection is configured between master and worker nodes. Step6: Join the worker node to the master node. ############################################################################# UBUNTU ######### Docker Installation Commands: https://docs.docker.com/install/linux/docker-ce/ubuntu/ Execute the below commands in all the nodes: # apt-get update # sudo apt-get install apt-transport-https ca-certificates curl gnupg-agent software-properties-common # curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - # su