惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
月光博客
月光博客
MyScale Blog
MyScale Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
爱范儿
爱范儿
P
Proofpoint News Feed
人人都是产品经理
人人都是产品经理
Last Week in AI
Last Week in AI
罗磊的独立博客
G
Google Developers Blog
Y
Y Combinator Blog
博客园 - 【当耐特】
WordPress大学
WordPress大学
大猫的无限游戏
大猫的无限游戏
博客园 - 叶小钗
J
Java Code Geeks
酷 壳 – CoolShell
酷 壳 – CoolShell
V
Visual Studio Blog
美团技术团队
宝玉的分享
宝玉的分享
Jina AI
Jina AI
小众软件
小众软件
T
Tailwind CSS Blog
A
About on SuperTechFans

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Kubernetes 1.36: 8 Features Worth Your Attention
Aziz Zoaib · 2026-06-29 · via DEV Community

Kubernetes 1.36 (Haru) 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.

These are the features I believe Platform Engineers, SREs, and Kubernetes administrators should pay attention to.

1. Mutating Admission Policies are Finally GA

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

That meant:

  • Running another service
  • Managing TLS certificates
  • Monitoring webhook availability
  • Debugging API server timeouts

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

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

2. User Namespaces are GA

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

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.

Example

spec:
hostUsers: false

**Why it matters
This is one of the biggest container isolation improvements Kubernetes has delivered in recent years.

3. Fine-Grained Kubelet Authorization

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

Why it matters
This makes RBAC cleaner and follows the principle of least privilege.

4. Node Log Query

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

Example
kubectl get --raw "/api/v1/nodes/node-1/logs?query=kubelet"

Why it matters
Less SSH access. Faster troubleshooting. Easier automation.

5. OCI Volume Support is Stable

This is one of my favorite additions.
Kubernetes can now mount content directly from OCI registries as a volume source.

Instead of packaging everything into container images or maintaining separate storage systems, teams can distribute:

  • ML models
  • Static assets
  • Configuration bundles
  • Reference datasets

using the same OCI registries they already use for containers.

Why it matters
It simplifies distribution and keeps everything versioned in one place.

6. PSI Metrics are Stable

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

Why it matters
This helps identify noisy neighbors and improves resource tuning decisions.

7. Resource Health Status

Kubernetes now provides better visibility into hardware and device health through Resource Health Status.

This is especially useful when running:

  • GPUs
  • AI workloads

Why it matters
Troubleshooting hardware-related issues becomes much easier.

8. Mutable Suspended Jobs

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

Why it matters
This gives platform teams more flexibility when managing batch workloads and scheduled processing jobs.

Let's Connect
Thank you for reading.

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.

You can find more of my work at:
🌐 https://azizzoaib.com

For questions, feedback, collaboration opportunities, or simply to connect, feel free to reach out at:
📧 me@azizzoaib.com

Cheers!