Posts

Showing posts with the label K8

Kubernetes installation step-by-step in various OS

Image
  Kubernetes installation step-by-step in various OS   Kubernetes Installation and Configuration ========================================= In Kubernetes setup we have one master node and multiple nodes. Cluster nodes is known as worker node or Minion. From the master node we manage the cluster and its nodes using ‘kubeadm‘ and ‘kubectl‘  command. Kubernetes can be installed and deployed using following methods: Minikube ( It is a single node kubernetes cluster) Kops ( Multi node kubernetes setup into AWS ) Kubeadm ( Multi Node Cluster in our own premises) We will install latest version of Kubernetes 1.7 on CentOS 7 / RHEL 7 with kubeadm utility.  Take three CentOS 7 servers with minimal installation. One server will acts master node and rest two servers will be minion or worker nodes. Master Node components :- ------------------------ API Server  – It provides kubernetes API using Jason / Yaml over http, states of API objects are stored in etcd Scheduler...