Questions tagged [eks]
39 questions
3
votes
1 answer
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 running into issues when it comes to understanding…
Declan
- 31
2
votes
1 answer
EKS Pods with ephemeral-storage constantly evicted
I'm working on EKS v1.20.11-eks-f17b81 and I'm facing an issue with a Java container Alpine based. Basically my deployment have the limits of ephemeral-storage for the request's and also the limit's like this.
- containerPort: 8080
protocol:…
user2275908
- 21
- 1
- 2
1
vote
1 answer
AWS Persistent Storage failed to refresh cached credentials
I'm trying to create a test pod which has a persistent volume.
This is my pod.yaml and pvc.yaml on an an EKS cluster.
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: my-pvc
namespace: my-ns
spec:
accessModes:
- ReadWriteOnce …
Container-Man
- 111
1
vote
0 answers
AWS Ingress-nginx loadbalancer: Targets are not within enabled Availability Zones
I have an EKS cluster with the following set up
2 VPCS 1 prod, 1 stage
each vpc has 3 subnets 1 public and 2 private
each vpc has 1 internet gateway and 1 nat gateway
The private subnets are connected to the natgateway via route table association.
I…
David Essien
- 111
1
vote
1 answer
Terraform resources not getting destryoed from terminal
I wanted to destroy the DEV environment from my Kubernetes hosted on AWS EKS. There are two parts to the resources; the infrastructure part and the application part. I use Terraform/Terragrunt to deploy/destroy the infra and helm to deploy/destroy…
1
vote
2 answers
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 RESTARTS AGE
grafana-6db7758575-pfqdg 0/1 …
user2331760
- 325
1
vote
1 answer
How do I configure EKS (Amazon Kubernetes) to use a different docker image repository?
You’d expect a wuestion this simple would have an amazon tutorial or documentation, but I can’t find any.
How do I configure an EKS cluster to connect to a different self hosted docker registry? I want to start running the open source version…
Some Linux Nerd
- 3,597
0
votes
1 answer
How to setup an AWS EKS cluster without a NAT gateway and without public IPv4 for the worker nodes?
I have an IPv4 EKS cluster on AWS.
My worker nodes have public IPv4 IPs.
AWS charges money for public IPv4s and I would like to get rid of them.
I also understand that I could use a NAT gateway with private IPv4s only for the worker nodes but the…
yuval
- 101
0
votes
0 answers
Nginx Ingress returns “400 Bad Request - The plain HTTP request was sent to HTTPS port” after upgrade to v1.12.1 with AWS NLB
We're facing a 400 Bad Request error after upgrading the Nginx Ingress Controller to version v1.12.1 in our EKS cluster. The exact error shown in the browser is:
400 Bad Request
The plain HTTP request was sent to HTTPS port
nginx
We are using an…
0
votes
0 answers
How can i safely access my eks cluster with ssm
I have successfully install aws ssm, and would like to use it to access my private eks cluster. I am having to jump into a bastion host in a public subnet with kubectl commands installed on it. I would like to get rid of this bastion host.
I am able…
eagercoder
- 123
0
votes
0 answers
Adding an Additional Basic Authentication Layer on Top of EKS API
I have an EKS cluster running with the Kubernetes Nginx Ingress Controller deployed. I would like to add an extra basic authentication layer on top of the Kubernetes API to restrict access and use custom error pages for users without a basic auth…
tasmanian_devil
- 214
- 3
- 9
0
votes
0 answers
custom kubelet configuration not applied on in karpenter node with EKS | karpenter v: 0.37.0 & eks cluster v:1.30
==> ec2nodeclass.yaml
apiVersion: karpenter.k8s.aws/v1beta1
kind: EC2NodeClass
metadata:
name: default
spec:
amiFamily: AL2
role: "KarpenterNodeRole-eks-karpenter"
subnetSelectorTerms:
- tags:
karpenter.sh/discovery:…
0
votes
0 answers
Changing asg when using eks managed nodegroup
Are we supposed to make manual changes to the asg if we created it as an eks managed nodepool?
For example, I can set the desired count in the asg but it won't match the desired count in the eks managed pool. Which makes me wonder why I can even do…
0
votes
1 answer
Kubernetes PVC not working in EKS cluster
I'm unable to get PVC working on a new eks cluster. I see the error Waiting for a volume to be created either by the external provisioner 'ebs.csi.aws.com' or manually by the system administrator. If volume creation is delayed, please verify that…
Mark
- 97
0
votes
1 answer
k8s pods on different EKS nodes not getting traffic
I have eks cluster with two nodes, I have four k8s services deployed in the cluster, two of them are in node-1 and the other two in node-2. I have have a Kong api gateway in front of these k8s services. My problem is after every restart of the Kong…
user1807948
- 101