Questions tagged [eksctl]
149 questions
2
votes
1 answer
eksctl create failed one subnet does not have sufficient capacity to support the cluster
I'm trying to create a cluster on EKS by the existing vpc of kops cluster in EC2 like below.
eksctl create cluster \
--name eks-cluster \
--version 1.18 \
--region us-east-1 \
--vpc-from-kops-cluster kops-cluster \
--fargate
but I faced the error…

sunsets
- 401
- 5
- 23
2
votes
1 answer
Jenkins application is not starting because of efs driver issue
I have an EKS cluster of 2 nodes which I created by the below command
time eksctl create cluster --name=eks-spinnaker --ssh-access=true --ssh-public-key=testkeyG --nodes=2 --region=ap-southeast-2 --write-kubeconfig=false
I then ssh to the two newly…

learner
- 2,480
- 10
- 50
- 94
2
votes
1 answer
How to resolve error while creating the cluster using eksctl in AWS
I am trying to create a cluster in AWS us-east-1 region for a user account of my root account.But while trying to create the same i am getting the following issues
[ℹ] eksctl version 0.22.0
[ℹ] using region us-east-1
[ℹ] subnets for…

Mandrek
- 1,159
- 6
- 25
- 55
2
votes
1 answer
How do I get the volume size of an EKS NodeGroup using eksctl?
I would like full details on NodeGroups in an EKS cluster, for example volume size as set using --node-volume-size in the command eksctl create nodegroup ... but also many other details of a NodeGroup that can be set with that command.
eksctl get…

Joshua Fox
- 18,704
- 23
- 87
- 147
2
votes
1 answer
SharedConfigLoadError while creating Amazon EKS Cluster
When trying to run this on terminal,
eksctl create cluster \
--name dev \
--version 1.14 \
--region us-west-2 \
--nodegroup-name demo \
--node-type t3.medium \
--nodes 3 \
--nodes-min 1 \
--nodes-max 4 \
--ssh-access \
--ssh-public-key…

Thira
- 81
- 1
- 9
2
votes
1 answer
How to deploy EKS Cluster-Autoscaler with more than one autoscaling group
I'm following the instructions on https://eksworkshop.com/beginner/080_scaling/deploy_ca/ to deploy the cluster-autoscaler.
While following the instructions i notice that the cluster_autoscaler.yml file contains only one nodegroup to…

Aurel Drejta
- 361
- 2
- 11
2
votes
1 answer
Autoscaling group unable to allocate spot instances
I have an eks cluster with a nodegroup based on a mixed instance distribution launch template with the following configuration:
region: us-west-2
instance_distribution: [p2.xlarge, p3.2xlarge, p2.8xlarge]
max_price: 0.9 …

vbollu
- 23
- 4
1
vote
1 answer
EKS configuration: API Gateway and pods in private subnets
In AWS, I'm trying to configure my K8S cluster with EKS, and from my limited experience with AWS and its services, I am struggling in configuring the integration between different parts.
Context:
Created the cluster with eksctl tool (the VPC,…

Roman
- 113
- 6
1
vote
0 answers
Migrate Docker Engine nodes from dockershim to cri-dockerd
I'm having EKS cluster V1.24 in that CONTAINER-RUNTIME=containerd://1.6.6 due to that I m not able to use Docker Build I have gone through a few Docs and found out that if I change my CONTAINER-RUNTIME-ENDPOINT to unix:///var/run/cri-dockerd.sock…

Vinayak Pawar
- 93
- 1
- 4
1
vote
0 answers
How to check why my service account is not created? 1 existing iamserviceaccount
My command to create
eksctl create iamserviceaccount --name efs-csi-controller-sa --namespace kube-system --cluster ciga --attach-policy-arn arn:aws:iam::$xxxxxx:policy/EKS_EFS_CSI_Driver_Policy --approve --override-existing-serviceaccounts …

MikiBelavista
- 2,470
- 10
- 48
- 70
1
vote
1 answer
I am trying to create an EKS cluster with cluster.yaml deployment.yaml and service.yaml but nodeSelector is not working as expected
I am trying to create an EKS cluster which has Jenkins running on Jenkins nodes and Nexus running on Nexus nodes for this I am trying to use nodeSelector which is not working as expected I don't understand which part I am missing.
My cluster.yaml…

Maheedhar Talluri
- 15
- 4
1
vote
1 answer
Not able to execute eksctl
I am new to kubernetes, today i installed eksctl in EC2 server with Amazon linux 2 OS.
But getting error as "-bash: /usr/local/bin/eksctl: cannot execute binary file", while running the eksctl.
Steps I followed from the link…
1
vote
1 answer
Is the update-kubeconfig command a client-only command or does it affect the cluster
I get the following warning/message when I run some k8s related commands
Kubeconfig user entry is using deprecated API version client.authentication.k8s.io/v1alpha1. Run 'aws eks update-kubeconfig' to update
and then I know I should run the…

pi.
- 1,441
- 3
- 19
- 25
1
vote
0 answers
Is there a way to know whether a user/role is allowed to access kubernetes objects using only AWS API/SDK?
I want to check whether a user/role ARN is added in a cluster aws-auth configmap. Few ways to do that is either by using eksctl and kubectl cli commands and checking. I want to do it programatically using Kubernetes nodejs API .
I also figured that…

vishalsaugat
- 193
- 6
1
vote
1 answer
AWS CloudFormation showing failures: failed to create: [ClusterControlPlaneSecurityGroupIngress, LegacyKubeManifestLambda ...]
I created an EKS cluster using eksctl, now I want to integrate grafana with this EKS cluster, I am following : Prepare an existing EKS cluster, because my cluster was not created by quick start. After I create stack, I got some…

user2002692
- 971
- 2
- 17
- 34