eksctl
eksctl copied to clipboard
The official CLI for Amazon EKS
### Description See comment [here](https://github.com/weaveworks/eksctl/issues/4655#issuecomment-1041834989) - (7~ methods) Tasks for creating/deleting stacks (returning a `*tasks.TaskTree`) e.g.`NewTasksToCreateIAMServiceAccounts`, `NewTasksToDeleteIAMServiceAccounts`, `DeleteTasksForDeprecatedStacks` - (4~ methods) Deleting stacks directly (not via task), e.g. `DeleteStackSync(s *Stack)...
Part of https://github.com/weaveworks/eksctl/issues/5315 Test the Karpenter creation flow. This might be easy if you can nicely mock the call to create Karpenter. This might require https://github.com/weaveworks/eksctl/issues/5406 to be done first.
Part of https://github.com/weaveworks/eksctl/issues/5315 The testing of the nodegroups will be a bit finicky because you will have to also start mocking kubernetes client calls to check if the node is...
Part of https://github.com/weaveworks/eksctl/issues/5315 Right now, `create cluster` unit test works by generating the infrastructure including the subnets and the VPC. A next step would be to be able to define...
I am using eksctl version: 0.105.0 when I create cluster using eksctl on ec2 user-data in us-east-1 region, I am intermittently getting error cluster creation stack failed to complete and...
### What were you trying to accomplish? We run a multi OS k8s cluster comprising of both Linux and Windows nodes. We've been successfully using eksctl for the setup and...
### Version of AWS SDK for Go? `1.44.35` ### Version of Go (go version)? `go version go1.16.3 darwin/amd64` ### What issue did you see? When I try to run the...
I'm having trouble getting the cluster-autoscaler to work with a node group of minSize: 0. I’ve followed the [eksctl docs](https://eksctl.io/usage/autoscaling/#scaling-up-from-0) on the topic and set my labels and taints as...
### Description Unifies StackManager funcs `DeleteStackBySpec`, `DeleteStackBySpecSync` & `DeleteStackSync` into one `DeleteStack` func (#5451). ```go type DeleteStackOptions struct { Stack *Stack Wait bool ErrCh chan error } // DeleteStack sends...
### Description Following up from #5250, the aim of this ticket is to find commands that would benefit from `--wait` but are missing this flag, and add the flag to...