AWS Load Balancer Controller 설치(feat. helm)

cch_chan·2022년 6월 8일
0

aws 설정

목록 보기
1/5

helm을 사용하여 AWS Load Balancer Controller 설치방법

  1. eks-charts 리포지토리 추가
    helm repo add eks https://aws.github.io/eks-charts
  2. 최신 차트가 적용되도록 로컬 리포지토리를 업데이트
    helm repo update
  3. aws 로드밸런서 컨트롤러 설치
helm install aws-load-balancer-controller eks/aws-load-balancer-controller \
-n default \
--set clusterName=staging \
--set serviceAccount.create=false \
--set serviceAccount.name=aws-load-balancer-controller 

( helm install aws-load-balancer-controller eks/aws-load-balancer-controller \
-n kube-system \
--set clusterName=cluster-name \
--set serviceAccount.create=false \
--set serviceAccount.name=aws-load-balancer-controller )
  1. 확인 방법
kubectl get deployment -n kube-system aws-load-balancer-controller
    NAME                           READY   UP-TO-DATE   AVAILABLE   AGE
    aws-load-balancer-controller   2/2     2            2           47s
profile
꾸준히 새로운 기술을 배워나가는중입니다.

0개의 댓글