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

推荐订阅源

Jina AI
Jina AI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
有赞技术团队
有赞技术团队
罗磊的独立博客
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
U
Unit 42
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Recent Announcements
Recent Announcements
Y
Y Combinator Blog
Vercel News
Vercel News
Martin Fowler
Martin Fowler
V
V2EX
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
L
LangChain Blog
云风的 BLOG
云风的 BLOG
H
Hackread – Cybersecurity News, Data Breaches, AI and More
aimingoo的专栏
aimingoo的专栏
G
Google Developers Blog
The GitHub Blog
The GitHub Blog
N
Netflix TechBlog - Medium
Google DeepMind News
Google DeepMind News
雷峰网
雷峰网
阮一峰的网络日志
阮一峰的网络日志
F
Fortinet All Blogs

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!