/
osbornray
/
PythonHacks
Обзор
Документация
Войти
/
osbornray
/
PythonHacks
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
aws-load-balancer-controller-on-eks-cluster/HelpFiles.json
19 строк
942 B
RekhuGopal
Ingress
30 июл 2022, 13:45
30 июл 2022, 13:45
36f955c
Код
Авторство
О чём код?
1. Creating an EKS Cluster ➜ eksctl create cluster -f ./cluster.yaml 2. Install the AWS Load Balancer Controller 2.1 Add the EKS chart repo to helm ➜ helm repo add eks https://aws.github.io/eks-charts 3. Install the AWS Load Balancer Controller CRDs - Ingress Class Params and Target Group Bindings ➜ kubectl apply -k "github.com/aws/eks-charts/stable/aws-load-balancer-controller//crds?ref=master" 4. Install the helm chart by passing the serviceAccount.create=false adn serviceAccount.name=aws-load-balancer-controller ➜ helm install aws-load-balancer-controller eks/aws-load-balancer-controller -n kube-system --set clusterName=app-lb-demo --set serviceAccount.create=false --set serviceAccount.name=aws-load-balancer 5. Deploy an app ➜ kubectl apply -f ./SampleApp.yaml 6. Verify the ingress is created and ALB is provisioned ➜ kubectl get ingress -A ➜ kubectl describe ingress ingress-2048 -n game-2048