192.168.33.10 Master
192.168.33.11 worker1
192.168.33.12 worker2
192.168.33.10 Master
192.168.33.11 worker1
192.168.33.12 worker2
Before you start setting up Kubernetes cluster, it is recommended that you update your system to ensure all security updates are up-to-date
$sudo yum update -y
Ensure swap is disabled on both master and worker nodes. Kubernetes requires swap to be disabled in order for it to successfully configure Kubernetes Cluster
$sudo swapoff -a
$cat /proc/swaps
$sudo sed -i '/ swap / s/^\(.*\)$/#\1/g' /etc/fstab
$sudo setenforce 0
###To check SELinux:
$ sestatus
$sed -i --follow-symlinks 's/SELINUX=enforcing/SELINUX=disabled/g' /etc/sysconfig/selinux