---
slug: "kubernetes-eks-warning-failed-scheduling"
title: "If Pods Do Not Start from Deployment in EKS, Warning FailedScheduling May Indicate Resource Insufficiency"
description: "Install ChromeDriver 126 on Ubuntu 22.04 and run Selenium against it — apt + manual download steps, plus matching the Chromium / Chrome version."
url: "https://www.ytyng.com/en/blog/kubernetes-eks-warning-failed-scheduling"
publish_date: "2021-02-11T14:11:30Z"
created: "2021-02-11T14:11:30Z"
updated: "2026-05-11T13:21:37.369Z"
categories: ["kubernetes"]
keywords: ""
featured_image_url: "https://media.ytyng.com/resize/20230812/30d8e13bddd840e29514caf204bd1d9f.png.webp?width=768"
has_video: false
has_music: false
video_urls: []
music_urls: []
lang: "en"
---

# If Pods Do Not Start from Deployment in EKS, Warning FailedScheduling May Indicate Resource Insufficiency

<p>That's true, but after using a large Kubernetes cluster within the company and then using a small EKS cluster for verification, I overlooked it.</p>

<p>Looking at the deployment with get,</p>
<pre>% kubectl get deployment -n kube-system (git)-[master]<br />NAME READY UP-TO-DATE AVAILABLE AGE<br />alb-ingress-controller 0/1 1 0 7m6s<br />coredns 2/2 2 2 149d</pre>

<p>I want to start this alb-ingress-controller, but READY is 0.</p>
<p>In this case, you can't see the pod with kubectl get pod (maybe you can see it with some options? I'm not sure),</p>
<p>but from the EKS web console, you can find out the name of the pod that is trying to start and describe it.</p>

<pre>% kubectl -n kube-system describe pod/alb-ingress-controller-5686444fbf-cjmqj<br /><br /><br />...<br />Tolerations: node.kubernetes.io/not-ready:NoExecute op=Exists for 300s<br /> node.kubernetes.io/unreachable:NoExecute op=Exists for 300s<br />Events:<br /> Type Reason Age From Message<br /> ---- ------ ---- ---- -------<br /> Warning FailedScheduling 0s (x3 over 75s) default-scheduler 0/1 nodes are available: 1 Too many pods.</pre>

<p>When Warning FailedScheduling is shown, it means the Pod hasn't tried to start due to external factors.</p>
<p>It's probably due to lack of resources, so I deleted other pods. Then it worked.</p>
