<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Veeresh</title>
    <description>The latest articles on DEV Community by Veeresh (@veeresh_devops).</description>
    <link>https://dev.to/veeresh_devops</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3653896%2Fef9de356-f7ac-4d1a-947b-b488361e0f81.png</url>
      <title>DEV Community: Veeresh</title>
      <link>https://dev.to/veeresh_devops</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/veeresh_devops"/>
    <language>en</language>
    <item>
      <title>K8S Pod failures</title>
      <dc:creator>Veeresh</dc:creator>
      <pubDate>Sun, 21 Dec 2025 16:28:12 +0000</pubDate>
      <link>https://dev.to/veeresh_devops/k8s-pod-failures-4d86</link>
      <guid>https://dev.to/veeresh_devops/k8s-pod-failures-4d86</guid>
      <description>&lt;p&gt;Here are 5 pod failures you'll actually face &lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;ImagePullBackOff - "No basic auth credentials."
Your node needs an IAM role with ECR permissions.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Check: kubectl describe node  | grep iam&lt;br&gt;
No role = No image pulls. Attach AmazonEC2ContainerRegistryReadOnly policy.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;"Exec format error"&lt;br&gt;
You built the image on your Mac M2. EKS nodes run AMD64.&lt;br&gt;
Fix: Always build with --platform linux/amd64&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;"Connection refused" to database&lt;br&gt;
Your RDS security group isn't allowing traffic from your NODE security group.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Add inbound rule: Allow port 5432 from sg-node-xxxxx&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;"Environment variable not set"
Secret exists but in wrong namespace. Or wrong key name.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Check: kubectl get secret -n &lt;/p&gt;

&lt;p&gt;Match the key names exactly in your secretKeyRef.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;CrashLoopBackOff with no logs
App needs more startup time than your liveness probe allows.
Increase initialDelaySeconds in your probe from 10s to 30s.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Follow for more!&lt;/p&gt;

</description>
      <category>kubernetes</category>
      <category>devops</category>
      <category>containers</category>
    </item>
  </channel>
</rss>
