This setup uses 3 machines:
- Centos7
- 100GB HDD
- 32 GB RAM
- 8 CPU
The following commands need to be run on all machines.
Update /etc/hosts so that each machine can ping one other using the hostname:
192.168.16.179 kubemaster
192.168.16.168 kube2
192.168.16.182 kube3
Be sure to update the IP addresses!
This allows the Kubernetes cluster to communicate.
$ setenforce 0
$ sed -i --follow-symlinks 's/SELINUX=enforcing/SELINUX=disabled/g' /etc/sysconfig/selinux
$ swapoff -a
$ yum install -y yum-utils device-mapper-persistent-data lvm2
$ yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
$ yum install -y docker-ce
Add the repository info for yum in /etc/yum.repos.d/kubernetes.repo:
[kubernetes]
name=Kubernetes
baseurl=https://packages.cloud.google.com/yum/repos/kubernetes-el7-x86_64
enabled=1
gpgcheck=1
repo_gpgcheck=1
gpgkey=https://packages.cloud.google.com/yum/doc/yum-key.gpg
https://packages.cloud.google.com/yum/doc/rpm-package-key.gpg
Install Kubernetes:
$ yum install -y kubelet kubeadm kubectl
Add Kubernetes to the cgroupfs
group:
$ sed -i 's/cgroup-driver=systemd/cgroup-driver=cgroupfs/g' /etc/systemd/system/kubelet.service.d/10-kubeadm.conf
Restart systemd daemon and kubelet:
$ systemctl daemon-reload
$ systemctl restart kubelet
$ systemctl enable kubelet.service
$ systemctl start docker.service
The following commands need to be run on the master.
Initialize the Kubernetes cluster, making sure to update apiserver-advertise-address
:
$ kubeadm init --apiserver-advertise-address=192.168.16.179 --pod-network-cidr=192.168.1.0/16
This could take a few minutes to complete. Once done, take note of the token
and discovery-token
.
Set up the Kubernetes Config:
$ mkdir -p $HOME/.kube
$ sudo cp -i /etc/kubernetes/admin.conf $HOME/.kube/config
$ sudo chown $(id -u):$(id -g) $HOME/.kube/config
Deploy flannel network to the cluster:
$ kubectl apply -f https://raw.githubusercontent.com/coreos/flannel/master/Documentation/kube-flannel.yml
The following commands need to be run on the worker machines.
Join the worker to the cluster, making sure to replace TOKEN
and DISCOVERY_TOKEN
:
$ kubeadm join 192.168.1.99:6443 --token TOKEN --discovery-token-ca-cert-hash DISCOVERY_TOKEN
Set up the Kubernetes Config:
$ mkdir -p $HOME/.kube
$ sudo cp -i /etc/kubernetes/admin.conf $HOME/.kube/config
$ sudo chown $(id -u):$(id -g) $HOME/.kube/config
Back on the master, let's verify the Kubernetes install.
Are the nodes reachable?
$ kubectl get nodes
NAME STATUS ROLES AGE VERSION
server-f2-base-node-2a0h8a.novalocal Ready <none> 5m v1.11.1
server-f2-base-node-jqbii9.novalocal Ready <none> 5m v1.11.1
server-f2-base-node-jr3695.novalocal Ready master 19m v1.11.1
Configure the dashboard:
$ kubectl create -f https://raw.githubusercontent.com/kubernetes/dashboard/master/src/deploy/recommended/kubernetes-dashboard.yaml
$ kubectl describe services kubernetes-dashboard --namespace=kube-system
$ kubectl proxy --address 0.0.0.0 --port 8001 --accept-hosts='^*$'