Zum Hauptinhalt springen
tsecurity.de LIVE
Echtzeit-Radar & Feeds
Alle RSS Feeds
👥 Community & Social
Sichere ProgrammierungI audited my own ML linter and had to withdraw its best evidence(21.09.2026 um 22:54 Uhr)
Sichere ProgrammierungQuantum Result Validation for Distributed Computing Systems(21.09.2026 um 22:54 Uhr)
Sichere ProgrammierungJWT Authentication and Role-Based Access Control in LocalHands(21.09.2026 um 22:56 Uhr)
Sichere ProgrammierungStochastic Parrot or Alien Mind?(21.09.2026 um 22:56 Uhr)
Sichere ProgrammierungBuilding AI for the Physical World Is a Different Engineering Problem(21.09.2026 um 22:58 Uhr)
Sichere ProgrammierungI audited my own ML linter and had to withdraw its best evidence(21.09.2026 um 22:54 Uhr)
Sichere ProgrammierungQuantum Result Validation for Distributed Computing Systems(21.09.2026 um 22:54 Uhr)
Sichere ProgrammierungJWT Authentication and Role-Based Access Control in LocalHands(21.09.2026 um 22:56 Uhr)
Sichere ProgrammierungStochastic Parrot or Alien Mind?(21.09.2026 um 22:56 Uhr)
Sichere ProgrammierungBuilding AI for the Physical World Is a Different Engineering Problem(21.09.2026 um 22:58 Uhr)
Intelligence View
⚡ tsecurity.de Intelligence

Kubernetes 1.36: Breaking Free from Container-Level Resource Constraints

The Real Cost of One-Size-Fits-All Resource Allocation You're running a machine learning training job in Kubernetes. Your main container needs exclusive CPU cores, NUMA alignment, and guaranteed memory—every microsecond counts. But your p…

0
↗ Quelle (dev.to)
Reagiere als Erste:r — dein Feedback zählt!




The Real Cost of One-Size-Fits-All Resource Allocation



You're running a machine learning training job in Kubernetes. Your main container needs exclusive CPU cores, NUMA alignment, and guaranteed memory—every microsecond counts. But your pod also runs three sidecars: a Prometheus exporter using 50m CPU, a log shipper, and a service mesh proxy. Before Kubernetes 1.36, you had two painful options:





  1. Allocate exclusive CPUs to every container, wasting resources on lightweight sidecars


  2. Give up on Guaranteed QoS class entirely, losing the performance guarantees your primary workload depends on



Pod-Level Resource Managers (alpha in 1.36) end this false choice. This is the kind of practical improvement that separates "works in dev" from "scales reliably in production."






How Pod-Level Resource Managers Actually Work



The enhancement extends the kubelet's CPU, Memory, and Topology Managers from a strict per-container model to a pod-centric allocation strategy. Enable the PodLevelResourceManagers and PodLevelResources feature gates, and you unlock hybrid resource allocation—where your primary container gets exclusive, NUMA-aligned resources while sidecars share the burstable pool.






The Architecture Shift



Previously, resource managers evaluated each container independently:




spec:
containers:
- name: ml-training
resources:
limits:
cpu: "8"
memory: "16Gi"
- name: prometheus-exporter
resources:
limits:
cpu: "100m" # Still gets exclusive CPU logic applied
memory: "128Mi"






Now, with pod-level resources, you specify allocation intent at the pod level:




spec:
resources: # New pod-level field
cpu: "8"
memory: "16Gi"
managedResources: [cpu, memory] # Which managers handle this
containers:
- name: ml-training
# Gets the pod-level resources
resources:
limits:
cpu: "8"
memory: "16Gi"
- name: prometheus-exporter
# Sidecar, uses shared resources
resources:
limits:
cpu: "100m"
memory: "128Mi"






The kubelet now understands: "Allocate these resources to the pod as a unit, optimizing for the main workload, and let sidecars share what's available."






Real-World Impact: Three Scenarios Where This Matters



Scenario 1: High-Frequency Trading



Your order-matching engine needs 16 exclusive cores, zero latency variance, and strict NUMA binding. Historically, you'd have to waste 2 full cores on a sidecar collecting metrics. Now sidecars can share resources while the primary container gets guaranteed isolation.



Scenario 2: Database Workloads



PostgreSQL or RocksDB containers in Kubernetes need predictable page cache behavior. Pod-level allocation lets you assign exclusive CPUs to the database while keeping log collectors and health checkers lightweight and shared.



Scenario 3: ML Inference at Scale



Serving BERT or GPT models requires precise CPU allocation for tokenizer preprocessing and model serving. With pod-level resources, your GPU-powered model container gets exclusive CPU cores while sidecar authentication and request logging run with elastic resources.






Actionable: Testing This Today



If you're running 1.36, here's how to start experimenting:





  1. Enable the feature gates in your kubelet config:




kubeletExtraArgs:
feature-gates: PodLevelResourceManagers=true,PodLevelResources=true








  1. Set the appropriate manager policies (static CPU policy required for NUMA alignment):




kubeletExtraArgs:
cpu-manager-policy: static
memory-manager-policy: static
topology-manager-policy: best-effort







  1. Deploy a test workload with explicit pod-level resources and observe kubelet logs for allocation decisions.


  2. Monitor NUMA efficiency using tools like numastat on nodes—you should see better locality for resource-managed pods.







What's Still Alpha



This feature is alpha, so expect changes:




  • API shape for .spec.resources may evolve

  • Not all manager combinations are tested (CPU+Memory+Topology interaction especially)

  • Upgrade/downgrade paths aren't fully hardened

  • Documentation is still being written



Do NOT use this in production yet—but start testing in non-critical clusters now. Alpha feedback shapes the 1.37+ roadmap.






The Bigger Picture



Pod-level resource managers reflect a maturation in Kubernetes: moving from "one-size-fits-all per-container abstractions" to "workload-aware resource models." This follows the same evolution we've seen with pod disruption budgets, pod scheduling policies, and topology spread constraints.



The real win? You no longer have to choose between performance guarantees and resource efficiency. Your ML pipelines, databases, and trading systems can have both.



What's your biggest pain point with resource allocation in Kubernetes today—is it NUMA binding, sidecar overhead, or something else? Share in the comments; early adopter feedback is how features like this get refined.

Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten Kubernetes 1.36: Breaking Free from Container-Level Resource Constraints

Thematisch verwandte Begriffe: Kubernetes, Breaking, Free, from · 6 Treffer

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Zum Aktualisieren ziehen
ZERO-DAY CVE-2026-79918 | MaxKB is an open-source AI assistant for enterprise. Prior to version 2.…
Advisory →
TTS Reader • tsecurity.de Voice
tsecurity.de Icon
tsecurity.de App
Offline-Lesen, Eilmeldungen & 0ms Ladezeit

Installiere tsecurity.de direkt auf deinen Home-Bildschirm für das ultimative Vollbild-Magazinerlebnis ohne Browser-Leisten.

Nächster Beitrag
Themen-Radar & Intelligence Matrix
Echtzeit-Taxonomie nach Angriffsvektoren & Plattformen

tsecurity.de Live Threat Radar

🔴 LIVE RADAR
MONITORING
AKTIV
CVE-DATENBANK
LIVE
🔍
Community Radar & Live Chat
Sentinel Bot online • Live-Stream
Dein Cluster: Security Explorer
Match:
lädt…
Verbindung zum Community-Stream wird aufgebaut...
Bearbeitungsmodus — Senden überschreibt deine Nachricht
Community-Puls — was gerade passiert
lädt…
Aktivitäten deiner Analysten
lädt…
Neues Thema oder Eilmeldung einreichen

Reiche interessante Links, Zero-Days oder Debatten ein. Die Community entscheidet per Upvote über die Veröffentlichung.

Heiß diskutierte Einreichungen
🔖 Gespeicherte Artikel
📂 Keine gespeicherten Artikel vorhanden.
Zurück Ziehen Vor
Links: vorheriger Artikel Rechts: nächster Artikel unten: schließen
News NIS-2 Frühwarnung Tier-1 Intel ⏱️ 3 Min vor 10 Min
Artikeldaten werden geladen...

Zurück: vorheriger Vor: nächster
↗ Original-Quelle
Social Reaktionen Deine Reaktion zählt
Einstufung & Relevanz-Poll 0 Stimmen
In sozialen Netzwerken teilen 1-Klick