March 2020
Intermediate to advanced
626 pages
14h 45m
English
At the time of writing, Kubernetes 1.16.0 is the latest version, and it has a few deprecated APIs that will create issues in installing some of the Helm charts, especially for deployment and StatefulSets:
# yum --showduplicates list kubeadm
For example, we will be selecting 1.15.6-0:
# version=1.15.6-0# yum install -y kubelet-$version kubeadm-$version kubectl-$version
# systemctl enable kubelet
# systemctl disable firewalld# systemctl stop firewalld
If you do not want to disable firewalld, you may need to open ports through the firewall. For Kubernetes, open the following:
# systemctl enable firewalld# systemctl start firewalld ...
Read now
Unlock full access