CRI-O기반의 k8s 설치
Linux 정보기록
컨테이너&가상화
사전사항
OS환경설정
$> swapoff -a
$> 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 -...