1. 시스템 업데이트 sudo apt updatesudo apt upgrade -y 기본적인 필수 패키지 설치sudo apt install -y curl wget git 2. 방화벽(UFW) 설정 sudo ufw enablesudo ufw allow 22sudo ufw allow 80sudo ufw allow 443#Kubernetes API Server (포트 6443):sudo ufw allow 6443#NodePort 예시 (예: 30001):sudo ufw allow 30001 3. 1단계: 웹 서버 설치 (Apache) sudo apt install apache2 -ysudo systemctl start apache2sudo systemctl enable apache2 ..