Questions tagged [amazon-eks]

Amazon Elastic Kubernetes Service (EKS) is a part of Amazon Web Services (AWS) and provides a fully managed Kubernetes platform, with the ability to have your containers deployed across a EC2 backed solution or as a serverless solution with AWS Fargate. Use this tag for programming-related questions specific to the EKS environment.

Amazon Elastic Kubernetes Service (EKS) is a managed Kubernetes service.

In most cases EKS acts like a standard Kubernetes installation, and questions labeled with will frequently also be tagged . You do not need if you can easily reproduce your issue in a local Kubernetes environment like Docker Desktop or Minikube but in production you happen to be using EKS.

Remember that Stack Overflow questions must specifically be programming-related. Questions about setting up EKS clusters, configuring IAM roles, and other cluster-level configuration are off-topic for Stack Overflow. Depending on the specific question another Stack Exchange site like Server Fault or DevOps.SE may be a better place to ask.

A good learning resource is EKS Workshop

3675 questions
1
vote
2 answers

How to create an EKS cluster with public and private subnets using terraform?

I'm usin terraform to set up an EKS cluster i need to make sure that my worker nodes will be placed on private subnets and that my public subnets will be used for my load balancers but i don't actually know how to inject public and private subnets…
1
vote
1 answer

What is use of using VOLUME ID while creating PV?

Observed two kinds of syntaxes for PV & PVC creation in AWS EKS. 1)Using vol Id while creating both PV & PVC (Create volume manually and using that id) 2)Without using vol Id (dynamic provisioning of PV) example-1: - apiVersion: "v1" kind:…
1
vote
1 answer

SSL(ACM) on EKS load balancer

I have my app running on EKS which is using istio-ingressgateway service for load balancer having ports 15020,15032,15031,15029,15030,15443. I want to terminate SSL on this ELB but whenever I apply my ingress.yaml file, it overwrites all the default…
1
vote
1 answer

Trying to convert from AWS classic load balancer to application load balancer in Amazon EKS

I have everything working using a classic load balancer. I would now like to update my Kubernetes environment to use an application load balancer instead of the classic load balancer. I have tried a few tutorials but no luck so far. I keep getting…
1
vote
2 answers

Mount error while trying to connect encrypted AWS EFS with efs-csi-node in EKS

I have tried connecting unencrypted EFS and it is working fine, but with encrypted EFS, the pod is throwing below error: Normal Scheduled 10m default-scheduler Successfully assigned…
Sreejith
  • 434
  • 3
  • 19
1
vote
1 answer

k8 pod priorities and tests

These are my priority classes NAME VALUE GLOBAL-DEFAULT AGE k8-monitoring 1000000 false 4d7h k8-system 500000 false 4d7h k8-user 1000 …
Anup Ash
  • 935
  • 8
  • 14
1
vote
1 answer

Client Pod identity in http request header while internal service call

I have deployed an application on Kubernetes and exposed with Istio service mesh. There is 2 components in the application, UI and API. I am trying to setup canary based setup to enable AB testing. So, for these 2 components, there is 2 versions (v1…
1
vote
1 answer

Can not login to superset after installing it on AWS kuberbetes

I installed amancevice/superset to AWS Kubernetes. When i open Load balancer DNS, I can see superset login page but default login is not working admin/admin. Is there anything i missed? Here's my yaml file i used to install…
CaffeinatedCod3r
  • 821
  • 7
  • 14
1
vote
1 answer

Insufficient pods in Amazon EKS Fargate

When I try to install metrics server on EKS Fargate cluster, it is throwing error: 0/4 nodes are available: 4 Insufficient pods. Following instructions from here to install metrics server: http://arun-gupta.github.io/hpa-app-metrics/ Can someone…
Rajeev
  • 4,762
  • 8
  • 41
  • 63
1
vote
1 answer

AWS eks has node groups without nodegroups - how?

In the eks cluster, the nodes are added using node groups. I have cluster that has no node groups in the compute section in the eks console but kubectl cluster-info shows the nodes for the cluster. How is this possible?
intechops6
  • 1,007
  • 4
  • 22
  • 43
1
vote
1 answer

login unauthorized error whle connecting to external hashicorp vault with kubernetes service account

Scenario: I have two Kubernetes 1.17 clusters, and one cluster have HashiCorp vault configured. I am trying to connect to it from other cluster using kubernetes auth method and I am getting 403 error as below: 2020-08-11T14:22:46.971Z [ERROR]…
Sreejith
  • 434
  • 3
  • 19
1
vote
1 answer

Kong k8s deployment fails after seemingly innocent eks worker ami upgrade

After AWS AMI workers upgrade to a new version our kong deployment on k8s fails. kong version: 1.4 old ami version: amazon-eks-node-1.14-v20200423 new ami version: amazon-eks-node-1.14-v20200723 kubernetes version: 1.14 I see that the new AMI comes…
happyWhaler
  • 111
  • 2
1
vote
3 answers

Deleting EKS Cluster with eksctl not working properly, requires manual deletion of resources such as ManagedNodeGroups

I'm running a cluster on EKS, and following the tutorial to deploy one using the command eksctl create cluster --name prod --version 1.17 --region eu-west-1 --nodegroup-name standard-workers --node-type t3.medium --nodes 3 --nodes-min 1 --nodes-max…
shaki
  • 220
  • 4
  • 16
1
vote
1 answer

Clock synchronisation of K8s pods in same namespace in EKS

I have spawned multiple Kubernetes PODs within same namespace at different times. I would like to know if the clocks of the Kubernetes PODs are synchronized? I have gone through a few posts here, but could not get an idea on this.
Joy
  • 4,197
  • 14
  • 61
  • 131
1
vote
0 answers

Jenkins Pipeline: AWS EKS - EC2MetadataError: failed to make EC2Metadata request status code: 404

I can successfully execute and create required Kuberneties cluster using the following command: eksctl create cluster \ --name prod \ --version 1.17 \ --region us-west-2 \ --nodegroup-name linux-nodes \ --node-type t2.micro \ --nodes 2 \ --nodes-min…
vicky
  • 890
  • 4
  • 23
  • 54
1 2 3
99
100