Questions tagged [eksctl]
149 questions
0
votes
1 answer
How do you deploy GitLab Operator to a AWS EKS cluster?
My goal is do deploy a self-hosted instance of GitLab on EKS. I have read through the guide on the GitLab docs and am attempting the operator install method. I setup my cluster using eksctl v0.61.0 and three t4g.large instances. The cluster comes up…

Seth Faulkner
- 461
- 1
- 5
- 16
0
votes
1 answer
How to access eks cluster from local machine
I have created a EKS cluster and able to run the kubectl commands from my ec2 instance. I have then downloaded the config file from ~/.kube/config location to my local machine. I am not able to run the kubectl commands and getting authentication…

zilcuanu
- 3,451
- 8
- 52
- 105
0
votes
0 answers
Remove specific worker node from EKS nodegroup
I am running an EKS cluster with several node groups and I am trying to find a way to remove a specific worker node (EC2 machine) from one of the node group.
I have drained and taint the node. however, I cannot find a way to remove it specifically…
0
votes
1 answer
Create EKS cluster via EKSCTL with a specific role
When I create my eks cluster,via eksctl, I want to assingn a specifc role that I created for it, but all the time he asks permission for create a new role for EKS.
Why ?
How can I create my eks cluster via eksctl with a specific role?

Luan Carvalho
- 190
- 2
- 10
0
votes
1 answer
Cross account CodePipeline for EKS deployment
I want to deploy Kubernetes service/deployment yaml files from CodePipeline which is in account A and the EKS cluster is in account B.
I tried the following approach.
On Account A:
Created assume role policy and attached it to the codebuild role…

SUBHAS PATIL
- 176
- 1
- 13
0
votes
1 answer
When we create AWS eks cluster ,where is master node which manages worker nodes?
I want to create a deployment , so need to have access to master node,so that I can login to that node and create the deployment file.
But,when creating cluster with eksctl tool,only nodes are available.

Amarjeet
- 21
- 1
- 6
0
votes
1 answer
AWS EKS IAM Addon Policies
Just looking for some clarification if possible..
If we look at the below cluster.yaml for eksctl;
metadata:
name: blah
region: blah
version: blah
managedNodeGroups:
- name: blah
instance_type: blah
blah
blah
blah
iam:
…

jonnybinthemix
- 637
- 1
- 9
- 29
0
votes
2 answers
create a cluster in EKS in a unsupported version
I want to create a cluster under EKS in a version that got recently deprecated 1.15 to test something version specific.
my below command is failing
eksctl create cluster --name playgroundkubernetes --region us-east-1 --version 1.15 --nodegroup-name…

opensource-developer
- 2,826
- 4
- 38
- 88
0
votes
1 answer
With EKS using Fargate - how is it setup to know how to scale? What is the default profile of a node in Fargate?
When EKS is setup with Fargate using eksctl --fargate, what is being done there?
How many nodes are being run?
What are the values of the node? (memory? cpu?)
How does EKS know how to scale when a pod is created? (how does it know how many nodes…

user10664542
- 1,106
- 1
- 23
- 43
0
votes
0 answers
How to implement EKS Cluster Autoscaling effectively
I've created an EKS managed node cluster in US-EAST-2 with the following configuration:
managedNodeGroups:
- name: eks-worker-nodegroup
instanceType: m5.xlarge
desiredCapacity: 2
minSize: 2
maxSize: 3
volumeSize: 200
…

Bryan
- 258
- 3
- 11
0
votes
0 answers
How should I use externalIPs on service with EKS?
I was trying to apply service externalIPs feature on EKS cluster.
What I do
I've created EKS cluster with eksctl:
eksctl create cluster --name=test --region=eu-north-1 --nodes=1
I've opened all security groups to make sure I don't have issue with…

sobi3ch
- 2,555
- 2
- 31
- 41
0
votes
1 answer
Is there any way to drain CloudWatch Container Insight nodes with autoscaler on EKS?
Cluster Specification:
apiVersion: eksctl.io/v1alpha5
kind: ClusterConfig
metadata:
name: mixedCluster
region: ap-southeast-1
nodeGroups:
- name: scale-spot
desiredCapacity: 1
maxSize: 10
instancesDistribution:
…

Alfian Firmansyah
- 44
- 8
0
votes
1 answer
Is it possible to add names to EKS nodes AFTER creating the nodes?
I had created eks cluster and node group using Terraform. I forgot to add names to the nodes.
Now the nodes have been successfully created but without names.
Is it possible to add names (say using eksctl) to nodes now that they are already in…

Biju
- 820
- 1
- 11
- 34
0
votes
0 answers
How to implement cluster autosclaer in EKS for multiple shards across different nodegroups?
I am using EKS for my application. I have created multiple nodegoups NG-1 and NG-2. I am also implementing Cluster Autoscaler which would increment the nodes based upon load. I have a use case where I want that the CA should increase nodes in NG-1…

Kaustubh
- 237
- 6
- 17
0
votes
1 answer
I do not see my cluster under Amazon EKS after creation via eksctl
I created an Amazone EKS Cluster using eksctl script. The creation was OK but I cant see any clusters in Amazone EKS Services Cluster page, and I cant see any EC2 instances.
What is the problem ?!
2021-03-18 11:03:10 [ℹ] waiting for the control…

Ousmane MBINTE
- 664
- 4
- 15
- 37