<?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: shubham goel</title>
    <description>The latest articles on DEV Community by shubham goel (@shubhamgoel23).</description>
    <link>https://dev.to/shubhamgoel23</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4139423%2F778aaf6b-1428-486d-b284-66f8c6f06ce6.png</url>
      <title>DEV Community: shubham goel</title>
      <link>https://dev.to/shubhamgoel23</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/shubhamgoel23"/>
    <language>en</language>
    <item>
      <title>Understanding Kubernetes Beyond Pods and Deployments</title>
      <dc:creator>shubham goel</dc:creator>
      <pubDate>Wed, 23 Sep 2026 13:16:46 +0000</pubDate>
      <link>https://dev.to/shubhamgoel23/understanding-kubernetes-beyond-pods-and-deployments-23bc</link>
      <guid>https://dev.to/shubhamgoel23/understanding-kubernetes-beyond-pods-and-deployments-23bc</guid>
      <description>&lt;p&gt;I have been learning more about Kubernetes recently, and one thing that helped me understand it better is that Kubernetes is not just about running containers.&lt;/p&gt;

&lt;p&gt;At first, I was mostly thinking like this:&lt;/p&gt;

&lt;p&gt;Application -&amp;gt; Docker image -&amp;gt; Pod -&amp;gt; Deployment&lt;/p&gt;

&lt;p&gt;But Kubernetes is more about defining what state you want your system to be in.&lt;/p&gt;

&lt;p&gt;For example, we can say:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;I want 3 instances of my application&lt;/li&gt;
&lt;li&gt;I want this application to be accessible through a service&lt;/li&gt;
&lt;li&gt;I want some configs and secrets available to it&lt;/li&gt;
&lt;li&gt;I want Kubernetes to restart it if something goes wrong&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Kubernetes controllers keep checking the current state and try to make it match the state we defined.&lt;/p&gt;

&lt;p&gt;This also makes Kubernetes very extensible.&lt;/p&gt;

&lt;p&gt;Using CRDs and operators, we can create our own resources and build higher level abstractions on top of Kubernetes.&lt;/p&gt;

&lt;p&gt;For example, instead of developers creating deployments, services, configmaps and other resources separately, we can define something like:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;ApplicationRelease: 1.2.3&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;and let the controller create and manage everything needed for that application.&lt;/p&gt;

&lt;p&gt;I am currently exploring more around this idea of using Kubernetes not just for deploying applications, but also for building platforms on top of it.&lt;/p&gt;

&lt;p&gt;Will keep sharing what I learn around Kubernetes, Java, Spring Boot and distributed systems.&lt;/p&gt;

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