Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. # EKS - [[eksctl]] - [[eks max pods]] ## 클러스터 연동 <code> $ aws eks update-kubeconfig --name eks-demo Added new context arn:aws:eks:ap-northeast-2:<계정 ID>:cluster/eks-demo to /Users/asuraiv/.kube/config </code> ## 구성 {{ https://i.imgur.com/8WHA8vy.jpg }} ## yaml <code> apiVersion: eksctl.io/v1alpha5 kind: ClusterConfig metadata: name: eks-cluster region: ap-northeast-2 managedNodeGroups: - name: eks-node-group minSize: 1 maxSize: 3 desiredCapacity: 1 instanceType: "t2.medium" volumeSize: 10 volumeType: gp2 spot: true </code> ## Docs - [[eks alb]] ## Links - https://github.com/237summit/Kubernetes-on-AWS open/eks.txt Last modified: 2024/10/05 06:15by 127.0.0.1