26
loading...
This website collects cookies to deliver better user experience
According to a Survey, 81% of organizations are working with two or more public cloud providers.
A multi-cloud strategy gives companies the freedom to use the best possible cloud for each workload.
yum install docker -y
systemctl enable docker --now
vim /etc/docker/daemon.json{
"exec-opts":["native.cgroupdriver=systemd"]
}
systemctl restart docker
systemctl enable docker --now
vim /etc/yum.repos.d/kubernetes.repo
yum install -y kubelet kubeadm kubectl — disableexcludes=kubernetes
systemctl enable kubelet --now
yum install iproute-tc
vim /etc/sysctl.d/k8s.conf
net.bridge.bridge-nf-call-ip6tables = 1
net.bridge.bridge-nf-call-iptables = 1
kubeadm token create --print-join-command
26