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
1 answer

Getting EKS Service IP Address from DNS using nslookup using commandline and grep

I am having a question on how to retrieve the IP address of an EKS Service using the commandline using grep. This is the nslookup command I used, and well it shows me the key Address: and the IPs but I only need one specific IP in that index and…
Benny
  • 839
  • 16
  • 32
1
vote
2 answers

Couldn't proceed with upgrade process as new nodes are not joining node group standard-workers

I am trying to upgrade my kubernetes version from 1.14 to 1.15, the cluster upgrade went well but when i am trying to update the node i am seeing the message Couldn't proceed with upgrade process as new nodes are not joining node group…
opensource-developer
  • 2,826
  • 4
  • 38
  • 88
1
vote
1 answer

AWS EKS access issue on eks:AccessKubernetesApi

I've created a new eks cluster using terraform , couple of developers when they try to access the cluster in aws console get the following error. Can someone pls point me what i'm missing. cluster version: 1.18 User: arn:aws:iam::xxxx:user/yyy is…
user6826691
  • 1,813
  • 9
  • 37
  • 74
1
vote
1 answer

Can't assume role in AWS CLI, even with trust relationship

I'm trying to assume role in awscli with my user (from a federated account), but I can't. Every time that I run this command: % aws sts assume-role --role-arn “arn:aws:iam::123456789012:role/eksServiceRole” --role-session-name "my_test" I receive…
1
vote
0 answers

Properly define pod resources for a gRPC server if requests are very different in terms of usage

Below you can see the setup that I currently have. A Django app creates a set of requests as Celery tasks. Load is balanced using Istio across the gRPC server pods. The Python script processes the request and returns it. Everything is on AWS EKS and…
James
  • 113
  • 4
1
vote
1 answer

How to reduce the downtime while launching a EKS cluster?

I am trying to launch a kubernetes cluster over EKS which would have multiple pods in it . Once the worker node has maximum pods on it running then a new node launches and the extra pod launches over the new node. Launching of a new node takes time…
Kaustubh
  • 237
  • 6
  • 17
1
vote
2 answers

Kubernetes on AWS EKS: Is there a way to configure Service's load balancer algorithm?

I am new to Kubernetes and currently deploy an application on AWS EKS. I want to configure a Service of my K8s cluster deployed on AWS EKS. Here is the description of my issue: I did an experiment. I spin up 2 Pods running the same web application…
Xiao Ma
  • 95
  • 2
  • 7
1
vote
1 answer

Redirect requests to particular replica in kubernetes

I am new to Kubernetes. If there is any service deployed using EKS having 4 replicas A,B,C,D. Usually loadbalancer directs requests to these replicas But if I want that my request should go to replica A only or B only... How can we achieve…
Pulkit
  • 73
  • 1
  • 4
1
vote
1 answer

EKS using NLB ingress and multiple services deployed in node group

So, I am very new to using EKS with NLB ingress and managing my own worker nodes using nodegroup (ASG). If I create a NLB ingress for the cluster and deploy multiple services inside the node group, how does NLB know that it has to load balance…
Hary
  • 1,127
  • 4
  • 24
  • 51
1
vote
1 answer

AWS Network Load Balancer and TCP traffic with AWS Fargate

I want to expose a tcp-only service from my Fargate cluster to the public internet on port 80. To achieve this I want to use an AWS Network Load Balancer This is the configuration of my service: apiVersion: v1 kind: Service metadata: name: myapp …
1
vote
1 answer

Application deployment over EKS using Jenkins

Can anyone tell me the deployment flow for deploying the application over Kubernetes or EKS cluster using Jenkins. How is the deployment files updated based on the change of the docker image. If we have multiple deployment files and we change any…
1
vote
0 answers

How to backup redis data in pvc of kubernetes

As mentioned in the title, I have an eks kubernetes cluster in aws, I have a redis service, and persist redis data through pvc, Storageclass Provisioner is aws-ebs, is there any way to backup my redis data? Thanks in advance
1
vote
1 answer

OCI runtime create failed in EKS

I tried to create a kubernetes deployment to EKS but I encounter this error Containers: locust-master: Container ID: docker://abc3a719222289774988bad3b1b1cfcc04c5b37559038aed49d3d00827fcc94c Image: mosesliao/locust:1.3.2 …
Moses Liao GZ
  • 1,556
  • 5
  • 20
  • 45
1
vote
1 answer

Kubernetes DaemonSet Pods schedule on all nodes expect one

I'm trying to deploy a Prometheus nodeexporter Daemonset in my AWS EKS K8s cluster. apiVersion: extensions/v1beta1 kind: DaemonSet metadata: labels: app: prometheus chart: prometheus-11.12.1 component: node-exporter heritage: Helm …
1
vote
1 answer

Kubernetes - In AWS EKS Fargate How Can I Send Logs From One Container To FluentD For Splunk?

I have no idea how to do this. Any help would be great. I'm running a pod on Fargate that holds my application container and a fluentd container. How can I send my logs from my application container to my fluentd container to push to splunk? I…
wesleywh
  • 1,053
  • 1
  • 13
  • 30