Configure Kubernetes which is Docker Container Orchestration System. On this exmaple, Install Minikube to configure Single Node Cluster within a Virtual machine. [1] Because using VM, Install a Hypervisor which is supported by Minikube. On this example, Install KVM. For other Hypervisors, it's possible to use VirtualBox, VMware Fusion, HyperKit. [root@dlp ~]# yum -y install qemu-kvm libvirt libvirt-daemon-kvm [root@dlp ~]# systemctl start libvirtd [root@dlp ~]# systemctl enable libvirtd [2] Configure Kubernetes repository and Install Minikube. [root@dlp ~]# cat <<'EOF' > /etc/yum.repos.d/kubernetes.repo [kubernetes] name=Kubernetes baseurl=https://packages.cloud.google.com/yum/repos/kubernetes-el7-$basearch 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 EOF [root@dlp ~]# yum -y install kubectl...