Why cloud native belongs at the heart of agentic AI: Lessons from building a multi-agent security platform on Kubernetes
Summary
Orange Innovation is developing and rolling out a real-time, multi-agent security operations platform on Kubernetes, as detailed in a June 17, 2026 post by Willem Berroubache, Lead Security Architect. This platform, presented at KubeCon + CloudNativeCon Europe 2026, aims to shorten mean time to detect and respond while offloading rule authorship from human analysts to an agent layer. It leverages CNCF projects like Falco with eBPF, Kafka, cert-manager, Cilium, OPA, Kyverno, Argo CD, Prometheus, and Cilium Hubble. The system uses an Isolation Forest classical anomaly model to pre-filter events before LLM-driven agents, and coordinates via the A2A protocol (open-sourced 2025, Linux Foundation) and MCP (Agentic AI Foundation). Each agent is deployed as a Kubernetes workload, with safety constraints codified as policy-as-code, and observability tied to A2A trace_ids.
Key takeaway
For AI Architects designing agentic AI platforms, recognize that cloud-native foundations are critical for operationalizing these systems at scale. Treat each agent as a standard Kubernetes workload, leveraging existing patterns for identity, isolation, and observability. Implement safety constraints as version-controlled policy-as-code and gate LLM calls with classical anomaly models to manage costs and performance. This approach ensures your agentic AI is robust, auditable, and integrates seamlessly into existing MLOps workflows.
Key insights
Building agentic AI on cloud-native foundations solves operational challenges and enables scalable, observable, and policy-driven security platforms.
Principles
- Treat agents as Kubernetes workloads.
- Codify agent safety constraints as policy-as-code.
- Gate LLM calls with classical anomaly models.
Method
Deploy agents as Kubernetes workloads; secure inter-agent traffic with cert-manager mTLS and CiliumNetworkPolicy; enforce safety via OPA/Kyverno policy-as-code; manage configs with Argo CD GitOps; pre-filter LLM calls with Isolation Forest.
In practice
- Use A2A protocol for agent coordination.
- Implement mTLS with cert-manager for agent identity.
- Manage agent prompts as Kubernetes Custom Resources.
Topics
- Agentic AI
- Cloud Native Security
- Kubernetes
- A2A Protocol
- Policy-as-Code
- LLM Gatekeeping
Best for: AI Engineer, MLOps Engineer, AI Architect
Related on AIssential
Editorial summary, takeaway, and curation by AIssential. Original article published by Cloud Native Computing Foundation.