0. 목적 온 프레미스 환경에서 LoadBalancer를 사용을 위해 설치 1. 사전 설치 helm으로 설치할 예정이므로 helm과 쿠버네티스가 설치되어 있어야 한다. 2. 설치 더보기 If you’re using kube-proxy in IPVS mode, since Kubernetes v1.14.2 you have to enable strict ARP mode. Note, you don’t need this if you’re using kube-router as service-proxy because it is enabling strict ARP by default. You can achieve this by editing kube-proxy config in current cluster: 위는 공식..
0. 목적 헬름 차트라고 불리우는 쿠버네티스 패키지를 관리 하는 도구인 Helm을 설치 해보자 헬름 차트(helm chart)란? 쿠버네티스 리소스와 관련된 셋(service,deployment 등)을 설명하는 파일의 모음이다. 이를 이용하여 쿠버네티스 애플리케이션을 설치하거나 쉽게 업데이트를 할 수 가 있다. 1. 설치 설치 환경 ubuntu 20.04 # 인스톨러 스크립트 가지고 오기 curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 # 실행 권한 부여 chmod 700 get_helm.sh # 인스톨러 스크립트 실행 ./get_helm.sh # 설치 확인 helm version 설치..