AWS Hands-On: Deploy a Containerized App to EKS using eksctl and kubectl.

preview_player
Показать описание
In this video, we'll deploy a Containerized App to EKS using eksctl and kubectl.

Links:

Commands:
Configure eksctl (EKS CLI created by Weaveworks)
brew tap weaveworks/tap
brew install weaveworks/tap/eksctl
eksctl version

Crete a Cluster
eksctl create cluster \
--name demo-cluster \
--version 1.23 \
--region us-east-1 \
--nodegroup-name demo-workers \
--nodes 3 \
--nodes-min 1 \
--nodes-max 4 \
--managed

eksctl get cluster

Create a Deployment on the EKS Cluster:
aws eks update-kubeconfig --name demo-cluster --region us-east-1

kubectl get all
kubectl get pods
kubectl get nodes

eksctl delete cluster --name demo-cluster

Test Deployment:
1. kubectl get all
2. Copy LoadBalacner Endpoint
Рекомендации по теме
Комментарии
Автор

you did not show that the app is working ! there ll be a problem with connections between the app parts !

sofianebenhamza
Автор

It doent work... the 3 pods show CrashLoopBackOff error.... can you help me?

mangostain
Автор

Thank you for your video)
I had the trouble during creation Node group.
Create failed. And I have got an error:

reached your quota for maximum Fleet Requests for this account. Launching EC2 instance failed.

Do you have any idea what causes a problem?

YBk-lohr
Автор

i have an issue when i did create deployment on my terminal
0/1 Pending 0 42s
0/1 Pending 0 7m54s
0/1 Pending 0 7m54s
0/1 Pending 0 4s
always like that

Raezon_