Questions tagged [aws-eks]
The aws-eks tag has no usage guidance.
18
questions
7
votes
2
answers
2k
views
enable ephemeral containers AWS EKS
I'm trying to debug a distroless POD by trying kubectl debug which uses ephemeral containers that are disabled by default in aws eks. I'm using aws eks 1.21
✗ kubectl debug -it opentelemetry-...
3
votes
1
answer
3k
views
Deploying an AWS Load Balancer Controller for EKS Fargate API service
Context
I'm trying to deploy a containerised API service to an EKS Fargate cluster and have it service requests from external internet addresses as an over-engineered POC/learning experience. I'm ...
2
votes
1
answer
3k
views
How do i fix terraform invalid JSON policy
I am trying to use a file which contains load balancer iam policy for my AWS in terraform. However when i run the terraform script, i get an error stating:
Error: "policy" contains an ...
2
votes
1
answer
2k
views
how to generate terraform code of existing AWS EKS cluster?
I created EKS cluster on my AWS account, finished all necessary configurations, the environment is working as expected. Now I would like to generate terraform code to have a possibility to create ...
1
vote
2
answers
4k
views
Grafana pod is not running, how to fix that?
I have deployed grafana in eks using the steps provided in this link
After deployment of grafana, the pod is not in running state.
kubectl get po -n grafana
NAME READY STATUS ...
1
vote
0
answers
67
views
eksctl and AsgInstance launch failures due to account quota limit
I was trying to launch an eks cluster using eksctl tool. The cluster is launched but the nodegroup fails to launch. The following error is displayed in the cloudformation of the nodegroup.
Error ...
1
vote
0
answers
271
views
AWS EKS nodes claiming an absurd amount of IP addresses
I run an AWS EKS cluster (v1.24) with a couple c5a.xlarge worker nodes and VPCCNI networking, with ENI trunking enabled and ENABLE_POD_ENI set to true in the VPCCNI configuration (some of the pods ...
0
votes
1
answer
742
views
Two EKS cluster using the same LoadBalancer
Does anybody know if it is possible (and how) to share the same ELB between two Ingress Controllers on different EKS clusters in the same VPC?
I have one cluster EKS cluster already running and I just ...
0
votes
1
answer
44
views
Unable to start metrics server on eks fargate
I am trying to implement eks on fargate. I want to deploy metrics server on eks fargate. I am following official documentation from aws on eks.
https://docs.aws.amazon.com/eks/latest/userguide/metrics-...
0
votes
0
answers
30
views
How to add tags automatically to AWS Volumes with Terraform
I have the following Terraform script to deploy an EKS cluster (tags left empty to hide values)
EKS.tf
provider "aws" {
region = var.region
profile = var.profile
default_tags {
...
0
votes
0
answers
23
views
How to manage EKS RDS ACK subnetgroups?
I have a script that sets up an EKS cluster with additional helpful services.
One of this is to install the RDS controller kit (ACK) to spin up Aurora databases.
However, sometimes when I run this ...
0
votes
0
answers
36
views
AWS EKS : Creating a statefulset. Each replica with it's own persistent storage on EFS
I'm trying to deploy a statefulset with 3 replicas on AWS EKS, with each replica having it's own persistent storage(on efs) dynamically created.
The efs server address is stored in aws secrets manager....
0
votes
0
answers
24
views
Does EKS bill include the costs for control-plane (master) nodes?
EKS costs $0.10 / hr + you pay for the worker nodes (EC2 + storage + data transfer). But EKS itself runs master nodes. So the question is: does $0.10 covers the costs of master nodes? If not, then how ...
0
votes
1
answer
286
views
AWS VPC CNI PLUGIN - Error: container runtime network not ready due to NetworkPluginNotReady - How to Resolve
I am facing difficulty in this, maybe the answer is simple so if someone knows the answer, please comment here.
I have created an EKS cluster using the following manifest.
apiVersion: eksctl.io/...
0
votes
0
answers
139
views
Why can't I schedule more pods even with Ipv4Prefix enabled in my EKS cluster
I am using cilium as my CNI. I have successfully run the cilium connectivity test and all tests pass. My nodegroup schedules a t3.small nodes (3 of them), which allows me to run 11 pods without ...
0
votes
0
answers
78
views
How to run K3s control plane node on AWS and worker nodes on Edge prenmises
I would like to know if there is any documentation on how to set up the following k3 cluster architecture
Control plane in the AWS
Worker nodes on edges premises
Moreover, there is another scenario ...
0
votes
1
answer
401
views
EKS service SSL endpoint
When creating a service using EKS, it is exposed using http through a AWS load balancer.
kubectl apply -f service.yaml - Will create a load balancer that's managed by EKS, and can not be modified. any ...
0
votes
1
answer
1k
views
Istio ingress gateway cannot connect to more than one replica for a service
I'm setting up Istio in a new AWS EKS cluster and created a basic nginx deployment to test. When the deployment only has one replica, it works perfectly, responding in less than 100ms.
When I add one ...