본문 바로가기
반응형

Kubernetes4

[EKS] EKS IAM USER 추가 TR;DR kubectl edit -n kube-system configmap/aws-auth mapUsers 부분을 알맞게 수정 apiVersion: v1 data: mapAccounts: | [] mapRoles: | - "groups": - "system:masters" "rolearn": "arn:aws:iam::xxxxxxx:role/xxxxx" "username": "create-eks-role" mapUsers: | - "groups": - "system:masters" "userarn": "arn:aws:iam::xxxxx:user/xxxxx" "username": "user1" - "groups": - "system:masters" "userarn": "arn:aws:iam::xxxxxx.. 2024. 1. 12.
Istio 설치 istoctl을 이용한설치를 하자. istioctl 설치 문서 (https://istio.io/latest/docs/setup/getting-started/#download) Getting Started Try Istio’s features quickly and easily. istio.io curl -L https://istio.io/downloadIstio | sh - PATH에 추가하라는 메세지가 나오는데 이건 .. 자유 저는 하지 않을 생각.. istio 디렉토리로 이동후 default 모드로 설치한다. cd istio-1.17.0/bin ./istioctl install --set profile=default 확인해보자! :) 끝! kubectl get svc -n istio-system ist.. 2023. 2. 20.
Metal LB 설치하기 Metal LB(https://metallb.universe.tf/)는 On-Premise환경에서 로드밸런서를 제공해주는 오픈 소스다 :) 설치는 공식문서(https://metallb.universe.tf/installation)를 따라가 보기로한다. 1. 설치 MetalLB, bare metal load-balancer for Kubernetes Installation Before starting with installation, make sure you meet all the requirements. In particular, you should pay attention to network addon compatibility. If you’re trying to run MetalLB on a clou.. 2023. 2. 20.
kubeadm 이용한 Ubuntu 에서 Kubernetes 설치하기 공식 문서를 기준 kubeadm 설치보자 (필자의 경우.. 1 Master Node + 3 Work Node로 구성할 생각) https://kubernetes.io/ko/docs/setup/production-environment/tools/kubeadm/install-kubeadm/ kubeadm 설치하기 이 페이지에서는 kubeadm 툴박스 설치 방법을 보여준다. 이 설치 프로세스를 수행한 후 kubeadm으로 클러스터를 만드는 방법에 대한 자세한 내용은 kubeadm으로 클러스터 생성하기 페이지를 참고한다. kubernetes.io 설치전 자신의 환경이 충족하는지 먼저 확인하자. (최소사양만 확인해도 대부분 무난하다.) 2 GB 이상의 메모리 2 개이상의 CPU 컨테이너 런타임(Container R.. 2023. 2. 19.
반응형