Zum Hauptinhalt springen
tsecurity.de LIVE
Echtzeit-Radar & Feeds
Alle RSS Feeds
👥 Community & Social
YouTube Security VideosGolemDE: Leben als IT-Freiberufler – zwei Perspektiven(24.09.2026 um 07:03 Uhr)
Sichere ProgrammierungOpenChamber 2.0: Skills ändern, Agent läuft weiter(24.09.2026 um 09:04 Uhr)
Sichere ProgrammierungBuilding Enterprise dApps with Smart Contracts and REST APIs(21.09.2026 um 11:34 Uhr)
Sichere ProgrammierungJavaScript Array Methods: 7 Essential Methods Every Developer Needs(24.09.2026 um 08:51 Uhr)
Sichere ProgrammierungCross-Chain Bridge Risk Assessment: Gauntlet(24.09.2026 um 08:53 Uhr)
Sichere ProgrammierungWe spent thirteen weeks about to buy a bigger database(24.09.2026 um 08:54 Uhr)
Sichere ProgrammierungHow to Choose a CDN for Asia in 2026: 7 Providers Compared(24.09.2026 um 08:54 Uhr)
Sichere ProgrammierungMy deploy said Success. It went to a URL nobody visits.(24.09.2026 um 09:00 Uhr)
YouTube Security VideosGolemDE: Leben als IT-Freiberufler – zwei Perspektiven(24.09.2026 um 07:03 Uhr)
Sichere ProgrammierungOpenChamber 2.0: Skills ändern, Agent läuft weiter(24.09.2026 um 09:04 Uhr)
Sichere ProgrammierungBuilding Enterprise dApps with Smart Contracts and REST APIs(21.09.2026 um 11:34 Uhr)
Sichere ProgrammierungJavaScript Array Methods: 7 Essential Methods Every Developer Needs(24.09.2026 um 08:51 Uhr)
Sichere ProgrammierungCross-Chain Bridge Risk Assessment: Gauntlet(24.09.2026 um 08:53 Uhr)
Sichere ProgrammierungWe spent thirteen weeks about to buy a bigger database(24.09.2026 um 08:54 Uhr)
Sichere ProgrammierungHow to Choose a CDN for Asia in 2026: 7 Providers Compared(24.09.2026 um 08:54 Uhr)
Sichere ProgrammierungMy deploy said Success. It went to a URL nobody visits.(24.09.2026 um 09:00 Uhr)
Intelligence View
⚡ tsecurity.de Intelligence

I Built an Open-Source Tool for Debugging Kubernetes Agentically

TLDR Built an open-source tool called Kubently that lets you troubleshoot Kubernetes clusters through natural conversation with any major LLM. ~50ms command delivery, read-only by default, works on any K8s cluster (EKS, GKE, AKS, bare…

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




TLDR



Built an open-source tool called Kubently that lets you troubleshoot Kubernetes clusters through natural conversation with any major LLM. ~50ms command delivery, read-only by default, works on any K8s cluster (EKS, GKE, AKS, bare metal), multi-cluster from day one.








The Problem



If you've spent any time debugging Kubernetes, you know the drill:




kubectl get pods -n production
kubectl describe pod some-pod-name-7f8b9c6d5-x2k4m
kubectl logs some-pod-name-7f8b9c6d5-x2k4m
kubectl get events -n production --sort-by='.lastTimestamp'
# repeat forever






The output is verbose. The debugging is manual. You're constantly context-switching between terminal, docs, and whatever monitoring tool you're using. Now multiply that by however many clusters you're managing across different providers.



I've been working with agentic systems through my involvement with CAIPE (Cloud Native AI Platform Engineering), and one thing became obvious: agents debug faster than I can half the time. They don't get tired, they don't forget to check events, and they're pretty good at pattern matching across large outputs.



So I built something around that.






What is Kubently?



Kubently is an open-source tool for troubleshooting Kubernetes agentically (hence the name - Kubernetes + agentically). It lets you debug clusters through natural conversation with any major LLM.



Instead of running kubectl commands manually, you describe the problem and let an agent do the investigation:




"The frontend pods in production keep restarting - can you figure out what's going on?"




The agent runs the commands, analyzes the output, and walks through the debugging process systematically.






Architecture



The system has three core components:



Kubently API - A horizontally scalable FastAPI service that handles command distribution, session management, and A2A (Agent-to-Agent) communication. Scales with Redis pub/sub.



Kubently Executor - A lightweight agent deployed in each target cluster. It's the only component that needs cluster access, and it's read-only by default with configurable RBAC rules.



LLM Integration - Supports multiple providers through a factory pattern. Works with whatever LLM setup you're running.



Command delivery happens via Server-Sent Events (SSE) with ~50ms latency. Fast enough that conversations feel responsive.






Key Design Decisions






Read-Only by Default



Security was a priority from day one. The executor only runs read operations unless explicitly configured otherwise. No accidental kubectl delete from an overeager agent.






Cloud Agnostic



Runs on any Kubernetes cluster - EKS, GKE, AKS, bare metal, k3s, whatever. If kubectl works, Kubently works.






Multi-Cluster Native



This wasn't an afterthought. Deploy an executor to each cluster, manage them all from a single API. The architecture assumes you're running multiple clusters because most teams are.






A2A Protocol Support



Native support for Agent-to-Agent communication means Kubently integrates with existing agentic systems. If you're already running something like CAIPE or using LangGraph/LangChain, Kubently slots in as a specialized Kubernetes debugging agent.






Black Box Architecture



Built with swappability in mind. Want to change the LLM provider? Swap it out. Want different agent logic? The interfaces are clean. I have a lot of ideas for future improvements and didn't want to paint myself into a corner.






What's Next



This is still early. There's plenty of room for improvement:




  • Better conversation memory and context handling

  • More sophisticated debugging strategies

  • Enhanced multi-cluster workflows

  • Improved observability integration



But it's functional and useful as-is. I've been using it for my own clusters and it's already saved me time.






Try It Out





Feedback, bug reports, and feature requests are all welcome. If you find it useful, a star on GitHub helps with visibility.



Happy to answer questions in the comments.

SOC Incident Playbook: Remote Code Execution (RCE) Defense
title: Detect Exploitation - I Built an Open-Source Tool for Debugging Kubernetes Agentically
id: 4fd2965f-5db0-4c5b-a1ad-1a671938e4ba
status: experimental
description: Automatisch generierte SIEM-Erkennungsregel basierend auf CTI Intelligence
references:
  - https://tsecurity.de/
author: iShareStuff CTI Automated Detection Engine
date: 2026-09-24
logsource:
  category: network_connection
  product: any
detection:
  selection:
      CommandLine|contains:
        - 'exploit'
  condition: selection
falsepositives:
  - Legitime administrative Zugriffe oder Penetrationstests
level: high
tags:
  - attack.initial_access
rule CTI_Threat_Indicator {
    meta:
        author = "iShareStuff CTI Automated Detection Engine"
        date = "2026-09-24"
        description = "YARA Signature for "
    strings:
        $str = "I Built an Open-Source Tool fo" ascii wide
    condition:
        any of them
}
tsecurity.de Cognitive Threat RAG
Fokus-Vektor:

Kognitive Analyse für identifizierte Bedrohung: Erhöhte Bedrohungslage im Bereich I Built an Open-Source Tool for Debuggin.... Basierend auf 368k Vektor-Korrelationen werden sofortige Isolationsmaßnahmen für betroffene Endpunkte empfohlen.

🛡️ Angriffsfläche & Exposure

Netzwerk/Remote-Zugriff ohne Vorauthentifizierung möglich.

Empfohlene Sofortmaßnahmen
  • 1. Perimeter-Inspektion: Relevante Portfreigaben und exponierte Endpunkte unverzüglich scannen.
  • 2. Patch-Applikation: Hersteller-Hotfix einspielen oder betroffene Daemons in isolierte DMZ-Segmente überführen.
  • 3. Telemetrie & EDR-Alerts: Prozessaufrufe und Child-Processes auf anomale Shell-Spawns überwachen.
🔗 Semantisch verwandte Zero-Days MariaDB 11.7 VEC
Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten I Built an Open-Source Tool for Debugging Kubernetes Agentically

Thematisch verwandte Begriffe: Built, OpenSource, Tool, Debugging · 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-97056 | SigNoz versions from v0.98.0 up to (but not including) v0.143.0, when co…
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 TTP ⏱️ 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