TIPS Appunti Cluster Kuber: differenze tra le versioni
Vai alla navigazione
Vai alla ricerca
(Creata pagina con "From Oracle Linux 8.x yum remove buildah skopeo podman containers-common atomic-registries docker container-tools -y cat <<EOF | sudo tee /etc/modules-load.d/k8s.conf br_netfilter EOF cat <<EOF | sudo tee /etc/sysctl.d/k8s.conf net.bridge.bridge-nf-call-ip6tables = 1 net.bridge.bridge-nf-call-iptables = 1 EOF sudo sysctl --system") |
Nessun oggetto della modifica |
||
Riga 13: | Riga 13: | ||
net.bridge.bridge-nf-call-iptables = 1 | net.bridge.bridge-nf-call-iptables = 1 | ||
EOF | EOF | ||
sudo sysctl --system | |||
sudo yum install -y yum-utils | |||
sudo yum-config-manager \ | |||
--add-repo \ | |||
https://download.docker.com/linux/centos/docker-ce.repo | |||
cat <<EOF | sudo tee /etc/modules-load.d/containerd.conf | |||
overlay | |||
br_netfilter | |||
EOF | |||
sudo modprobe overlay | |||
sudo modprobe br_netfilter | |||
# Setup required sysctl params, these persist across reboots. | |||
cat <<EOF | sudo tee /etc/sysctl.d/99-kubernetes-cri.conf | |||
net.bridge.bridge-nf-call-iptables = 1 | |||
net.ipv4.ip_forward = 1 | |||
net.bridge.bridge-nf-call-ip6tables = 1 | |||
EOF | |||
# Apply sysctl params without reboot | |||
sudo sysctl --system | sudo sysctl --system |
Versione delle 01:21, 6 mar 2022
From Oracle Linux 8.x
yum remove buildah skopeo podman containers-common atomic-registries docker container-tools -y
cat <<EOF | sudo tee /etc/modules-load.d/k8s.conf br_netfilter EOF
cat <<EOF | sudo tee /etc/sysctl.d/k8s.conf net.bridge.bridge-nf-call-ip6tables = 1 net.bridge.bridge-nf-call-iptables = 1 EOF sudo sysctl --system
sudo yum install -y yum-utils sudo yum-config-manager \ --add-repo \ https://download.docker.com/linux/centos/docker-ce.repo
cat <<EOF | sudo tee /etc/modules-load.d/containerd.conf
overlay
br_netfilter
EOF
sudo modprobe overlay sudo modprobe br_netfilter
# Setup required sysctl params, these persist across reboots. cat <<EOF | sudo tee /etc/sysctl.d/99-kubernetes-cri.conf net.bridge.bridge-nf-call-iptables = 1 net.ipv4.ip_forward = 1 net.bridge.bridge-nf-call-ip6tables = 1 EOF
# Apply sysctl params without reboot sudo sysctl --system