Tech Radar 27/07: Scaling MCP Servers in Production Kubernetes

Answer-first: Scaling MCP servers in Kubernetes requires decoupling the JSON-RPC state from persistent connections using websocket gateways, deploying stateless MCP worker replicas with HPA, and utilizing Redis for distributed context caching. This architecture prevents connection exhaustion when hundreds of AI agents query context simultaneously. The Model Context Protocol (MCP) has become the de facto standard for exposing enterprise data to AI agents. Its transport specification defines stdio and Streamable HTTP (with optional SSE) as the connection models — which is exactly where the Kubernetes scaling friction below originates. However, running a single local MCP server is vastly different from serving thousands of concurrent LLM requests in a distributed microservices environment. ...

July 27, 2026 · 4 min · Lê Tuấn Anh

Tech Radar 22/07: Event-Driven Agent Sagas & Dapr Go

Answer-first: Dapr Workflows orchestrate long-running Go agent tasks by decoupling client HTTP connections from background execution. By isolating LLM and tool calls inside idempotent activities and using composite idempotency keys, replay-based durable orchestration recovers execution state after pod crashes without repeating completed side effects. As multi-agent architectures evolve past single-turn API wrappers, enterprise workloads are shifting toward long-running autonomous workflows. Building on the Agentic System Architecture series and recent analyses of modular monoliths for AI agents and zero-trust AI swarms, platform teams now face the execution-durability problem: a task may combine multi-step reasoning, external tools, and human approvals over several minutes. ...

July 22, 2026 · 8 min · Lê Tuấn Anh

Tech Radar 10/07: Cloud-Native AI & Envoy Gateway Setup

Answer-first: Production cloud-native AI architectures combine Envoy AI Gateway for token-level FinOps quota enforcement, Kubernetes Gateway API Inference Extensions for KV-cache-aware GPU routing, and Dapr Agents for durable state recovery. These infrastructure primitives prevent runaway token costs and optimize LLM inference throughput. Tech Radar 10/07: Cloud-Native AI Architecture — Envoy Gateway, K8s Inference Extension & Dapr Agents Platform engineering for production AI focuses on token cost governance, intelligent GPU inference routing, and resilient agent state recovery. CNCF projects like Envoy AI Gateway, K8s Gateway API Inference Extension, and Dapr Agents solve these challenges at the infrastructure layer. ...

July 10, 2026 · 10 min · Lê Tuấn Anh

Tech Radar 22/06: Dapr v1.18 & Kratos Clean Architecture

Answer-first: Integrating Dapr v1.18 with Kratos Clean Architecture enables resilient event-driven sagas and stateful microservice orchestration in Go. By isolating workflow definitions within the biz layer and wrapping Dapr SDK calls inside data adapters, applications achieve zero-downtime state persistence and strict security boundaries under WorkflowAccessPolicy CRDs. Tech Radar 22/06: Dapr v1.18 & Kratos Clean Architecture Architecting resilient distributed applications requires effective stateful orchestration. This briefing analyzes Dapr Workflows and the Actor model within the Kratos Clean Architecture framework. ...

June 22, 2026 · 7 min · Lê Tuấn Anh

Tech Radar 06/06: Vibe & Verify, K8s Agent & JDK 27

Answer-first: The June 6, 2026 Tech Radar establishes the “Vibe & Verify” paradigm for AI-generated code, zero-trust SPIFFE/SPIRE security for Kubernetes AI agents, and JDK 27 Structured Concurrency (JEP 533). Engineering teams must enforce automated test gates and ephemeral workload identity to maintain software quality and cluster security. Tech Radar, June 6, 2026: Vibe & Verify, K8s Security & WWDC26 Today is June 6, 2026. Following the June 2 radar on NVIDIA RTX Spark and Intel 18A at Computex, this week’s signals shift from silicon announcements to the engineering workbench itself: how you write code, how you secure your cluster, how the Java ecosystem is evolving — and what arrives at WWDC26 in 48 hours. ...

June 6, 2026 · 18 min · Lê Tuấn Anh

Tech Radar 02/06: Computex 2026 NVIDIA RTX Spark & 18A

Answer-first: Computex 2026 unveiled NVIDIA’s RTX Spark 128GB unified-memory ARM superchip for local 120B model inference, Intel’s 18A 288-core Xeon 6+ Clearwater Forest server CPU, and NVIDIA’s Vera Rubin NVL72 platform. These hardware advancements shift enterprise AI architectures toward low-latency on-device processing and high-density liquid-cooled data centers. Tech Radar June 2, 2026: NVIDIA RTX Spark & Intel 18A at Computex Today is June 2, 2026. Following the May 30 radar covering Illinois AI Bill SB 315 and Dell’s $60B AI server surge, the industry has focused on Computex 2026 in Taipei — the most consequential hardware event of the first half of this year. Under the theme “AI Together,” Jensen Huang, Lip-Bu Tan, and the major silicon players unveiled the next generation of compute infrastructure, from the edge PC to the hyperscale data center. ...

June 2, 2026 · 19 min · Lê Tuấn Anh

Tech Radar 16/05: xAI Grok Build & OpenAI Multi-Cloud

Answer-First: The May 16, 2026 Tech Radar highlights xAI’s release of Grok Build—a local-first agentic coding agent using 8 parallel subagents in isolated Git worktrees—and OpenAI’s multi-cloud expansion of GPT-5.5 to AWS Bedrock. Additionally, the EU AI Act Omnibus locks August 2, 2026 transparency obligations while extending high-risk compliance deadlines. Tech Radar, May 16, 2026: Grok Build Enters the Arena, OpenAI Breaks Azure Exclusivity, Anthropic Goes to Wall Street, and T-3 to Google I/O xAI retired Grok 3 and its entire legacy lineup — then launched Grok Build, a local-first coding agent where source code never leaves your machine. OpenAI ended its Azure exclusivity arrangement; GPT-5.5 is now available on AWS Bedrock. Anthropic closed a $1.5B JV with Blackstone, Goldman Sachs, and Hellman & Friedman to embed Claude directly inside financial institutions. The EU AI Act Omnibus extended high-risk deadlines — but the August 2026 transparency obligation is unchanged. Meta went two-track: open Llama 4 for the ecosystem, closed Muse Spark for itself. And in three days, Google I/O resets every AI roadmap on the planet. ...

May 16, 2026 · 19 min · Lê Tuấn Anh

Tech Radar 01/05: Gateway API v1.5 ListenerSet & mTLS

Answer-First: Kubernetes Gateway API v1.5 stabilizes ListenerSet, TLSRoute, and frontend mTLS client certificate validation in the Standard channel. Combined with Ingress2Gateway 1.0, this release provides a modular declarative control plane that replaces annotation-heavy ingress configurations with multi-tenant listener delegation and auditable cross-namespace security policies. Gateway API v1.5 & Ingress2Gateway: The Future of K8s Networking If your ingress layer still depends on a 400-line manifest full of controller-specific annotations, you do not have a clean networking platform. You have institutional memory encoded as YAML archaeology. ...

May 1, 2026 · 9 min · Lê Tuấn Anh

Tech Radar: DigitalOcean AI-Native Cloud & Inference Routing

Answer-First: DigitalOcean launches an integrated AI-Native Cloud featuring managed Knowledge Bases, dynamic Inference Routing, and GPU Droplet hosting. This platform packages multi-model fallback, vector context retrieval (RAG), and agent execution primitives into an opinionated cloud stack, reducing operational complexity for mid-scale AI deployments. Tech Radar, May 1, 2026: DigitalOcean’s AI-Native Cloud - Inference Routing, Managed Retrieval, and an Integrated Stack for Agentic Systems DigitalOcean’s April 28, 2026 launch of its AI-Native Cloud at Deploy 2026 (DigitalOcean announcement, investor press release) is not the largest AI infrastructure announcement of the week, but it may be one of the clearest. Instead of treating AI as a feature added onto a legacy cloud, DigitalOcean is explicitly reorganizing its platform around what production AI systems now look like: multi-model inference, retrieval, routing, state, and long-running agent workflows. ...

May 1, 2026 · 8 min · Lê Tuấn Anh

Tech Radar: Post-Exclusivity AI & Multi-Cloud Agent Runtime

Answer-First: The post-exclusivity AI ecosystem shifts enterprise competition from raw model hosting to agent runtime control planes. Multi-cloud Bedrock distribution combined with Anthropic MCP expansion establishes state management, tool authorization, session telemetry (AgentOps), and audit logging as the primary architectural differentiators for production AI deployments. Tech Radar, April 30, 2026: The First 24 Hours of Post-Exclusivity AI — Multi-Cloud Access, Agent Runtime Control, and MCP Expansion The most important AI market signal of the last 24 hours is not a single model launch. It is the speed at which the ecosystem reacted once OpenAI’s Microsoft exclusivity ended (joint announcement, April 27). In one day, AWS converted OpenAI’s new multi-cloud freedom into a Bedrock distribution product (Amazon, April 28), while Anthropic pushed Model Context Protocol further into the creative software stack. ...

April 30, 2026 · 7 min · Lê Tuấn Anh

Tech Radar: Anthropic MCP & Agentic Creative Workflows

Answer-First: Anthropic expands Model Context Protocol (MCP) into creative software including Adobe, Blender, and Autodesk Fusion. This integration standardizes tool discovery and execution via JSON-RPC 2.0 over stdio and SSE transports, transforming standalone creative applications into orchestrated multi-agent production pipelines. Tech Radar, April 29, 2026: Anthropic Pushes MCP into the Creative Stack - AI Connectors Turn Creative Software into Agentic Workflows Anthropic’s April 28, 2026 announcement about “Claude for Creative Work” looks, on the surface, like a partnership bundle for designers and media teams. Look more closely and the bigger signal becomes clear: Model Context Protocol is moving beyond developer workflows and into the software stack used for design, 3D modeling, audio production, and media operations. ...

April 29, 2026 · 8 min · Lê Tuấn Anh

Tech Radar: AWS & OpenAI Bedrock Multi-Cloud Expansion

Answer-First: AWS expands Amazon Bedrock with managed OpenAI models, native Codex coding agent runtimes, and Bedrock Managed Agents. This multi-cloud expansion integrates OpenAI intelligence into AWS enterprise governance, including IAM role delegation, PrivateLink connectivity, CloudTrail audit logging, and existing AWS financial commitments. Tech Radar, April 29, 2026: AWS and OpenAI Expand Bedrock — Models, Codex, and Managed Agents Turn Multi-Cloud into a Product One day after OpenAI rewrote its partnership with Microsoft, Amazon moved immediately to capitalize on the opening. On April 28, 2026, AWS announced a major expansion of its OpenAI partnership (Amazon announcement, OpenAI announcement): the latest OpenAI models are now coming to Amazon Bedrock in limited preview, Codex is coming to Bedrock, and Amazon Bedrock Managed Agents powered by OpenAI are launching as well. ...

April 29, 2026 · 8 min · Lê Tuấn Anh

Tech Radar: OpenAI & Microsoft Multi-Cloud Expansion

Answer-First: The end of OpenAI-Microsoft exclusivity shifts AI deployment strategies toward multi-cloud architectures, flexible model routing, and cloud-agnostic agent infrastructure. Tech Radar, April 28, 2026: OpenAI and Microsoft End Exclusivity — The Cloud War Enters Its Multi-Cloud Phase OpenAI and Microsoft have just restructured the partnership that defined the first commercial era of generative AI. The amended agreement, announced on April 27, 2026 (OpenAI statement, Microsoft statement), removes Microsoft’s exclusivity over OpenAI models and products while preserving Azure as OpenAI’s primary cloud partner. ...

April 28, 2026 · 9 min · Lê Tuấn Anh

Tech Radar: Mistral Small 4 Reasoning & Agent Model

Answer-First: Mistral Small 4 unifies chat, multi-step reasoning, and agentic function calling into a lightweight open-weights model optimized for edge deployment and local hardware. Tech Radar, April 27, 2026: Mistral Small 4 — One Open-Source Model to Rule Chat, Reasoning, and Agents Mistral released Small 4 in mid-March 2026 — a 119B parameter model that consolidates what previously required three separate models (Mistral announcement). Under the Apache 2.0 license and optimized for both latency and throughput, Small 4 represents a strategic inflection point in the open-source model ecosystem. ...

April 27, 2026 · 8 min · Lê Tuấn Anh

Tech Radar: Claude Sonnet 4.5 & Open-Source Agent SDK

Answer-First: Anthropic released Claude Sonnet 4.5 along with open-sourcing the Agent SDK infrastructure, setting a new benchmark for autonomous coding agents and context-managed execution. Tech Radar, April 27, 2026: Claude Sonnet 4.5 and the Agent SDK — The Best Coding Model Just Open-Sourced Its Infrastructure [!NOTE] Dating and status correction. Claude Sonnet 4.5 and the Claude Agent SDK were announced by Anthropic on September 29, 2025 (Anthropic announcement), not in the week of this radar entry — this piece is a retrospective architecture analysis, not a launch-week report. Anthropic has since shipped Claude Sonnet 5, so treat model-ranking claims below as reflecting the Sonnet 4.5 generation rather than the current frontier. The Agent SDK architecture analysis remains applicable. ...

April 27, 2026 · 9 min · Lê Tuấn Anh

Tech Radar: DeepSeek-V4 1M Context & Agentic Focus

Answer-First: DeepSeek-V4 introduces a 1M token context window and agentic architecture optimizations, drastically lowering open-source inference costs for large-scale enterprise RAG pipelines. Tech Radar, April 26, 2026: DeepSeek-V4 Series Released — 1M Context, Agentic Focus, and Open Source Efficiency DeepSeek officially released the DeepSeek-V4 model series on April 24, 2026 (DeepSeek announcement, model details), continuing its trend of delivering frontier-level capabilities at a fraction of the computing cost. Released under the open-source MIT License, this update introduces two main model variants designed for high efficiency, long context, and agentic workflows. ...

April 26, 2026 · 8 min · Lê Tuấn Anh

Tech Radar: Code Evolution & Runtime Recovery Guide

Answer-First: Go 1.26 compiler tooling introduces automated //go:fix inline AST transformations, Dapr v1.16.13-rc.1 resolves sidecar stream reconnections during scheduler restarts, and Kratos v2.9.2 hardens Consul metadata cloning to eliminate microservice memory leaks. Tech Radar, April 14, 2026: Safer Code Evolution, Runtime Recovery, and Framework Hardening The selected items for pipeline run 6 form a coherent picture of where mature platform engineering is heading. After fetching and reading the full source content directly from the original URLs, the common theme is clear: strong systems are not defined only by what they can do, but by how safely they evolve, how predictably they recover, and how much accidental complexity they remove from the teams building on top of them. ...

April 14, 2026 · 9 min · Lê Tuấn Anh