Questions tagged [eksctl]
149 questions
0
votes
1 answer
add karpenter to eksctl config file, but no upgrade
I have created the EKS cluster.
Then follow the document (https://eksctl.io/usage/eksctl-karpenter/) to add karpenter support,
metadata:
name: eks-dev
region: ap-southeast-2
version: "1.22"
+ tags:
+ karpenter.sh/discovery:…

Bill
- 2,494
- 5
- 26
- 61
0
votes
1 answer
Not able to access EKS Cluster using cloudformation
I know when you create an EKS cluster, only the user that created a cluster has access to it. In order to allow someone else to access the cluster, you need to add that user to the aws-auth. I know how i can do it manually but I want to do it using…

Ahsan Saleem
- 7
- 3
0
votes
1 answer
How to communicate between Backend (microservices) in AWS EKS?
I have 2 node js backend applications, they depend on each other, but I'm confused about how these 2 backends communicate in Kubernetes AWS EKS

Juan Daniel
- 149
- 3
- 12
0
votes
1 answer
Not able to create EKS cluster using eksctl
I am using following command to create an EKS cluster :
eksctl create cluster --name cqpocsefkdemo --node-type t2.micro --nodes 3 --nodes-min 3 --nodes-max 5 --region us-east-1 --zones us-east-1a,us-east-1b,us-east-1c,us-east-1d,us-east-1f
But I am…

Mehul Gupta
- 13
- 2
0
votes
1 answer
GPU nodegroup in EKS
I am not able to create a nodegroup with GPU type using EKS, getting this error from cloud formation:
[!] retryable error (Throttling: Rate exceeded status code: 400, request id: 1e091568-812c-45a5-860b-d0d028513d28) from…

Jumana Kass
- 15
- 5
0
votes
2 answers
Replicate eksctl cluster creation with OIDC
I'd like to recreate this functionality in CDK
eksctl create cluster \
--name <> \
--region <> \
--with-oidc \
--nodes=3
My cdk cluster creation looks like this (in python)
cluster = eks.Cluster(
…

h33
- 1,104
- 3
- 16
- 29
0
votes
1 answer
How can I apply MixInstancesPolicies to EKS spot managed node group?
currently I'm trying to create a managed node group on EKS using eksctl.
Here is my script:
eksctl create nodegroup \
--cluster=my-cluster \
--region ap-southeast-1 \
--name=spot-instances-nodes…

Nguyen Hoang Vu
- 751
- 2
- 14
- 35
0
votes
2 answers
Create an identity mapping for EKS with Terraform
I am currently provision my EKS cluster/s using EKSCTL and I want to use Terraform to provision the cluster/s. I am using Terraform EKS module to create cluster. I have use EKSCTL to create identity mapping with following command
eksctl create…

Ruwan Vimukthi Mettananda
- 27
- 1
- 6
0
votes
2 answers
problem to schedule pod in fargate with error "Pod not supported on Fargate: volumes not supported: dir-authentication not supported because:"
New to AWS EKS Fargate.
I created a cluster on aws EKS fargate and then proceed to install a helm chart; and the pods are all in pending state, looking at the pod description, I noticed there is some errors as
eksctl create cluster -f…

sqr
- 365
- 2
- 12
- 29
0
votes
1 answer
When kicking a managed EKS cluster using a yaml config file, what does desiredCapacity in ClusterConfig specify?
I am a k8s and EKS noob.
I'm trying to kick a cluster and keep meeting the desiredCapacity key. I just cannot find where it is documented.
Don't bother pointing to the schema, it's not described there.

Skulas
- 457
- 6
- 6
0
votes
0 answers
Increasing Node Allocatable Memory on an EKS Node
Occasionally my EKS nodes become NotReady and freeze-up due to high page swapping. This occurs despite the fact that swapping is disabled, likely due to the explanation here on why swapping can't actually be disabled on Linux.
To remediate this, I'd…

Natan Yellin
- 6,063
- 5
- 38
- 57
0
votes
1 answer
Correct way of using eksctl ClusterConfig with vpc-cni addon and pass maxPodsPerNode to launch template?
I've been trying to create an EKS cluster with vpc-cni addon due to the pod restrictions for m5.xlarge VMs (57). After creation I can see it is passed to the launchtemplate object but when doing a node describe it still can allocate the previous…

paltaa
- 2,985
- 13
- 28
0
votes
0 answers
How to delete corrupt local EKS Anywhere cluster
I've created a local EKS Anywhere cluster following this tutorial.
$ CLUSTER_NAME=dev-cluster
$ eksctl anywhere generate clusterconfig $CLUSTER_NAME \
--provider docker > $CLUSTER_NAME.yaml
$ eksctl anywhere create cluster -f…

Ari Seyhun
- 11,506
- 16
- 62
- 109
0
votes
1 answer
unable to get nodegroup info using eskctl
Total noob and have a runaway EKS cluster adding up $$ on AWS.
I'm having a tough time scaling down my cluster ad not sure what to do. I'm following the recommendations here: How to stop AWS EKS Worker Instances reference below
If I run:
"eksctl…

EKSNoob
- 1
- 1
0
votes
0 answers
EKS nodes fail to communicate with AWS Classic Load Balancer
I "inherited" an unmanaged EKS cluster with two nodegroups created through eksctl with Kubernetes version 1.15. I updated the cluster to 1.17 and managed to create a new nodegroup with eksctl and nodes successfully join the cluster (i had to…

berrur
- 115
- 11