Questions tagged [amazon-eks]

92 questions
0
votes
0 answers

Pull image in AWS EKS cluster from on-prem Docker proxy server protected by VPN

I have a kubernetes cluster in AWS EKS. From the cluster, I need to pull Docker images from an on-prem proxy server. When pulling the images from my local machine, I must create a VPN connection to the on-prem network. Somehow, I think I'd need to…
0
votes
0 answers

I want to use same terraform code for both kubernetes clusters Oracle (OKE) and AWS (EKS)

I want to use same terraform code for both kubernetes clusters oracle (OKE) and AWS (EKS) and install the argocd helm chart on it, I given my code below for your reference, now the problem I am facing now, if I set k8s_cluster_type to "eks", so…
San
  • 1
0
votes
1 answer

Pod assigned node role instead of service account role on AWS EKS

First some info about the setup: EKS version: 1.21 eksctl version: 0.77.0 AWS Go SDK verion: v1.44.28 Deploying using kubectl I have a k8s cluster on AWS EKS on which I am deploying a custom k8s controller for my application. Using instructions…
asr9
  • 111
  • 6
0
votes
0 answers

Configure EKS to use Nexus Private Docker Registry (HTTP/HTTPS)

I've created an EKS cluster on AWS along with Nexus Repository on DigitalOcean using Terraform & Ansible. Also I've not created any SSL for the Nexus Repository, so it is "http." Normally, it is sufficient to add [insecure-registries:...] entry into…
0
votes
0 answers

Temporarily take kubernetes cluster offline

I have a kuberbetes cluster running in EKS. We use it for testing periodically but mainly it just sits there with all its nodes and costing us. I am looking for the most elegant way to turn it off so it does not incur costs and turn it back on when…
JasonGenX
  • 522
  • 1
  • 5
  • 16
0
votes
1 answer

Direct Traffic from a Pulbic ALB to an Internal ALB for EKS

So I have an EKS cluster sitting in a dedicated VPC (EKS-VPC) In my Main VPC I have a public-facing ALB that I want it to somehow direct traffic to services running in EKS. More specifically I want the ALB to forward requests for specific endpoints…
0
votes
1 answer

Why does 'kubectl' sometimes return a *node* name instead of the *pod* name if the specified pod no longer exists in the cluster?

Sometimes kubectl get pod some-pod-1234abc returns an error like: Error from server (NotFound): pods "ip-192-168-55-196.us-east-1.compute.internal" not found. This is surprising because the error references a node, not a pod name. This happens very…
ebr
  • 103
  • 4
0
votes
1 answer

Is it possible to mix instance types in an AWS cluster?

I'd like to know if it is possible to mix node instance types in an AWS (EKS) cluster. I'd like to host something which requires more resources and add it to the cluster.
Dark Star1
  • 1,385
  • 7
  • 22
  • 37
0
votes
1 answer

Using the AWS VPC CNI add on for EKS can I access a pod directly via it's vpc ip address over a vpn?

My general question is in the title. I feel like I've misunderstood the way pods are connected to the VPC. I was assuming this would make pods routable on the vpc but it seems like this is not the case. Does traffic still need to flow through the…
ClintM
  • 103
  • 4
0
votes
0 answers

AWS ELB(classic load balancer) response is too slow and sometimes response is not coming it is showing timed out

I have EKS cluster setup in private subnet in which i'm having my microservices and for each microservice i have classic load balancer to access API. But response is having high latency and sometimes it just timed out. I have service A which talks…
0
votes
1 answer

Can't access RDS instance externally

I've spun up an RDS postgres database in an existing VPC (which has both public and private subnets - connected to a NAT gateway) which I've set as publicly accessible. I've added the relevant IP addresses to the attached security group, and this…
Mike
  • 23
  • 7
0
votes
1 answer

Unable to grant additional AWS roles the ability to interact with my cluster

I am trying to learn AWS EKS and following Getting started with Amazon EKS – AWS Management Console and AWS CLI guide step by step except for the region which I have changed to us-east-1. I am able to create my cluster - my-cluster but when I am…
kusur
  • 101
  • 1
0
votes
2 answers

AWS EKS add-on coredns status as degraded and node group creation failed( is unable to join Cluster)

I'm trying to create node group on EKS Cluster(region = ap-south-1) but it is failing to join cluster. Health issues : NodeCreationFailure Instances failed to join the kubernetes cluster I found that it may be because AWS EKS add-on(coredns) for…
uni
  • 21
  • 1
  • 4
0
votes
1 answer

Hashicorp Vault - AWS EKS vs EC2

Is it possible to install a Hashicorp Vault cluster to EC2 only or is EKS required and would there be a big advantage to one over the other?
Robben
  • 33
  • 5
0
votes
2 answers

AWS EKS Ingress Timeout On Any Non-Root Path

We have configured an Ingress resource on our EKS cluster with rewrites from /.* on the load balancer to the matching URI upstream. If we visit staging.my-domain.com/, we see a successful health-check response as expected. However, any other url,…