<?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: Aziz Zoaib</title>
    <description>The latest articles on DEV Community by Aziz Zoaib (@azizzoaib786).</description>
    <link>https://dev.to/azizzoaib786</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%2F865258%2Fd3d6ec40-8f02-4598-8487-6dce8bf97b7c.jpeg</url>
      <title>DEV Community: Aziz Zoaib</title>
      <link>https://dev.to/azizzoaib786</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/azizzoaib786"/>
    <language>en</language>
    <item>
      <title>Kubernetes 1.36: 8 Features Worth Your Attention</title>
      <dc:creator>Aziz Zoaib</dc:creator>
      <pubDate>Sun, 28 Jun 2026 17:19:32 +0000</pubDate>
      <link>https://dev.to/azizzoaib786/kubernetes-136-8-features-worth-your-attention-1kkb</link>
      <guid>https://dev.to/azizzoaib786/kubernetes-136-8-features-worth-your-attention-1kkb</guid>
      <description>&lt;p&gt;&lt;strong&gt;Kubernetes 1.36 (Haru)&lt;/strong&gt; brings around 70 enhancements, ranging from security improvements to new scheduling capabilities. While most release summaries try to cover everything, I wanted to focus on the features that stood out to me as someone working with Kubernetes platforms on a daily basis.&lt;/p&gt;

&lt;p&gt;These are the features I believe Platform Engineers, SREs, and Kubernetes administrators should pay attention to.&lt;/p&gt;

&lt;h2&gt;
  
  
  1. Mutating Admission Policies are Finally GA
&lt;/h2&gt;

&lt;p&gt;One of the most practical improvements in Kubernetes 1.36 is the graduation of Mutating Admission Policies to General Availability.&lt;br&gt;
Traditionally, if you wanted to automatically add labels, inject sidecars, or enforce organization-wide defaults, you needed an admission webhook.&lt;/p&gt;

&lt;p&gt;That meant:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Running another service&lt;/li&gt;
&lt;li&gt;Managing TLS certificates&lt;/li&gt;
&lt;li&gt;Monitoring webhook availability&lt;/li&gt;
&lt;li&gt;Debugging API server timeouts&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;With Mutating Admission Policies, many of these use cases can now be handled directly inside the Kubernetes API server using CEL expressions.&lt;/p&gt;

&lt;p&gt;**Why it matters&lt;br&gt;
A failed webhook can block workload creation across an entire cluster. Eliminating that dependency reduces operational complexity and removes a common failure point.&lt;/p&gt;

&lt;h2&gt;
  
  
  2. User Namespaces are GA
&lt;/h2&gt;

&lt;p&gt;User Namespaces have been in development for years and are finally considered production ready in Kubernetes 1.36.&lt;br&gt;
Without User Namespaces, a process running as root inside a container is also root from the perspective of the host operating system.&lt;/p&gt;

&lt;p&gt;With User Namespaces enabled, root inside the container is mapped to an unprivileged user on the node. Even if a container escape vulnerability is exploited, the attacker gains significantly fewer privileges.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Example&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;code&gt;spec:&lt;br&gt;
  hostUsers: false&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;**Why it matters&lt;br&gt;
This is one of the biggest container isolation improvements Kubernetes has delivered in recent years.&lt;/p&gt;

&lt;h2&gt;
  
  
  3. Fine-Grained Kubelet Authorization
&lt;/h2&gt;

&lt;p&gt;Many monitoring and troubleshooting tools previously required broad access through the nodes/proxy permission.&lt;br&gt;
Kubernetes 1.36 introduces fine-grained kubelet authorization, allowing access to specific endpoints without granting excessive permissions.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why it matters&lt;/strong&gt;&lt;br&gt;
This makes RBAC cleaner and follows the principle of least privilege.&lt;/p&gt;

&lt;h2&gt;
  
  
  4. Node Log Query
&lt;/h2&gt;

&lt;p&gt;If you've ever SSHed into a worker node just to inspect kubelet logs, you'll appreciate this feature.&lt;br&gt;
Kubernetes now supports retrieving node logs through the Kubernetes API.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Example&lt;/strong&gt;&lt;br&gt;
&lt;code&gt;kubectl get --raw "/api/v1/nodes/node-1/logs?query=kubelet"&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why it matters&lt;/strong&gt;&lt;br&gt;
Less SSH access. Faster troubleshooting. Easier automation.&lt;/p&gt;

&lt;h2&gt;
  
  
  5. OCI Volume Support is Stable
&lt;/h2&gt;

&lt;p&gt;This is one of my favorite additions.&lt;br&gt;
Kubernetes can now mount content directly from OCI registries as a volume source.&lt;/p&gt;

&lt;p&gt;Instead of packaging everything into container images or maintaining separate storage systems, teams can distribute:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;ML models&lt;/li&gt;
&lt;li&gt;Static assets&lt;/li&gt;
&lt;li&gt;Configuration bundles&lt;/li&gt;
&lt;li&gt;Reference datasets&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;using the same OCI registries they already use for containers.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why it matters&lt;/strong&gt;&lt;br&gt;
It simplifies distribution and keeps everything versioned in one place.&lt;/p&gt;

&lt;h2&gt;
  
  
  6. PSI Metrics are Stable
&lt;/h2&gt;

&lt;p&gt;Pressure Stall Information (PSI) metrics provide visibility into resource contention for CPU, memory, and I/O.&lt;br&gt;
Traditional metrics might show a node at 60% CPU utilization.&lt;br&gt;
PSI tells you whether workloads are actually waiting for resources.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why it matters&lt;/strong&gt;&lt;br&gt;
This helps identify noisy neighbors and improves resource tuning decisions.&lt;/p&gt;

&lt;h2&gt;
  
  
  7. Resource Health Status
&lt;/h2&gt;

&lt;p&gt;Kubernetes now provides better visibility into hardware and device health through Resource Health Status.&lt;/p&gt;

&lt;p&gt;This is especially useful when running:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;GPUs&lt;/li&gt;
&lt;li&gt;AI workloads&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Why it matters&lt;/strong&gt;&lt;br&gt;
Troubleshooting hardware-related issues becomes much easier.&lt;/p&gt;

&lt;h2&gt;
  
  
  8. Mutable Suspended Jobs
&lt;/h2&gt;

&lt;p&gt;Previously, if you wanted to change resource requests for a suspended Job, you often had to recreate it.&lt;br&gt;
Kubernetes 1.36 allows resource requests and limits to be updated while the Job remains suspended.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why it matters&lt;/strong&gt;&lt;br&gt;
This gives platform teams more flexibility when managing batch workloads and scheduled processing jobs.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Let's Connect&lt;/strong&gt;&lt;br&gt;
Thank you for reading.&lt;/p&gt;

&lt;p&gt;If you're building cloud-native platforms, working with AWS, Kubernetes, OpenShift, Terraform, or Platform Engineering, I'd love to hear about your experiences and learn from your journey.&lt;/p&gt;

&lt;p&gt;You can find more of my work at:&lt;br&gt;
🌐 &lt;a href="https://azizzoaib.com" rel="noopener noreferrer"&gt;https://azizzoaib.com&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;For questions, feedback, collaboration opportunities, or simply to connect, feel free to reach out at:&lt;br&gt;
📧 &lt;a href="mailto:me@azizzoaib.com"&gt;me@azizzoaib.com&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Cheers!&lt;/p&gt;

</description>
      <category>kubernetes</category>
      <category>aws</category>
      <category>devops</category>
      <category>sre</category>
    </item>
  </channel>
</rss>
