Kubernetes는 내부적으로 IPv6를 사용한다.
절대 IPv6를 비활성화해서는 안된다.
sudo cat <EOF | sudo tee /etc/modules-load.d/k8s.conf
br_netfilter
EOF
sudo 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
swapoff -a
vi /etc/fstab
# swap partition 줄을 삭제하거나 주석처리한다.
/swap swap swap defaults 0 0