-
Tech should learn
-
AWS(Draft)
-
DevOps Essentials
- DevOps Essentials
- 1. What DevOps really is
- 2. Life before DevOps
- 3. DevOps SDLC.
- 4. DevOps principles
- 6. DevOps Metrics
- 7. DevOps Leadership - People & Change leadership
- 8. Designing a DevOps transformation strategy.
- 9. DevSecOps - Security Embedded into DevOps
- 10. Site Reliability Engineering (SRE).
-
DevSecOps Essentials(Draft)
-
CI/CD
-
Docker
- Docker Mastery
- 1. The Compute Evolution Physical vs. Virtual vs. Containerization
- 2. Docker Internals
- 3. Docker Image Engineering
- 4. Registries and The Secure Supply Chain
- 5. Multi-Container Orchestration - Docker Compose
- 6. Docker Networking: The Connectivity Matrix
- 7. Docker Storage: The Persistence Layer
- 8. Docker Observability: The Eyes and Ears of Your Microservices
- 9. Hardening Security for Containers
- Writing Dockerfile
- Docker Commands
-
Kubernetes (Draft)
-
- Kubernetes ConfigMaps for Decoupling Configuration
- Kubernetes Secrets for Decoupling Configuration
- Kubernetes Downward API for Decoupling Configuration
- Kubernetes Volumes
- Kubernetes PV & PVC
- Kubernetes StorageClasses
- Kubernetes Volume Snapshots
- Kubernetes Volume Expansion using PVC and StorageClass
- Kubernetes Secrets Management at Scale
-
AWS Elastic Kubernetes Service
-
Programming
-
Python
< All Topics
Agentic Workloads & MCP on EKS
Posted
Updated
Author -Rajkumar Aute
Views6
1. AI Agents: From Chatting to Doing A standard AI (like a basic LLM) can tell you how to fix a cluster. An AI Agent actually logs in and fixes it. To do this safely, agents need a standardized way to discover what “tools” (commands) are available to them.
2. Model Context Protocol (MCP): The Universal Connector Introduced by Anthropic and now a Linux Foundation standard, MCP is the 2026 industry standard for connecting AI agents to external data and tools.
- Standardized “Hands”: Instead of writing custom code for every agent, you use an EKS MCP Server. It provides a list of “Tools” (e.g.,
list_pods,describe_node,check_logs) that any AI model can understand and call instantly. - Context Preservation: MCP helps agents remember what they did three steps ago, which is vital for complex tasks like a “Multi-stage Cluster Upgrade.”
3. Dynamic Resource Allocation (DRA): The GPU Shared Economy In the past, if a Pod wanted a GPU, it took the whole GPU (or a static slice). This was wasteful. DRA is the 2026 replacement for the old Device Plugin model.
- Workload-Aware: Instead of asking for “1 GPU,” an agent can ask for “16GB of VRAM and 20% Compute.”
- Topology-Aware: DRA understands if two AI agents need to talk to each other over a high-speed NVLink and schedules them on the same physical server automatically.
Contents