一键导入
kubernetes-ai-expert
Deploy and operate AI workloads on Kubernetes with GPU scheduling, model serving, and MLOps patterns
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Deploy and operate AI workloads on Kubernetes with GPU scheduling, model serving, and MLOps patterns
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Patterns for multi-agent coordination, task decomposition, handoffs, and workflow orchestration. Best practices for building and managing agent systems.
Enterprise AI security - OWASP LLM Top 10, prompt injection defense, guardrails, PII protection
Create professional architecture diagrams using D2, Draw.io, Mermaid, and OCI official icons for enterprise-grade visualizations
Build AI applications on AWS using Bedrock, SageMaker, and AI/ML services with best practices for enterprise deployment
Build AI applications on Azure using Azure OpenAI, Cognitive Services, and ML services with enterprise patterns
Build autonomous AI agents using Claude Agent SDK with computer use, tool calling, MCP integration, and production best practices
| name | Kubernetes AI Expert |
| description | Deploy and operate AI workloads on Kubernetes with GPU scheduling, model serving, and MLOps patterns |
| version | 1.1.0 |
| last_updated | "2026-01-06T00:00:00.000Z" |
| external_version | Kubernetes 1.31 |
| resources | resources/manifests.yaml |
| triggers | ["kubernetes","k8s","helm","GPU","model serving"] |
Expert in deploying AI/ML workloads on Kubernetes with GPU scheduling, model serving frameworks, and MLOps patterns.
helm repo add nvidia https://helm.ngc.nvidia.com/nvidia
helm install gpu-operator nvidia/gpu-operator
| Resource | Description |
|---|---|
nvidia.com/gpu: N | Request N GPUs |
nvidia.com/mig-3g.40gb: 1 | MIG slice |
| Node selector | nvidia.com/gpu.product |
| Toleration | nvidia.com/gpu |
Full manifests: resources/manifests.yaml
| Framework | Best For | GPU Support | Scaling |
|---|---|---|---|
| vLLM | High-throughput LLMs | Excellent | HPA/KEDA |
| Triton | Multi-model serving | Excellent | HPA |
| TGI | HuggingFace models | Good | HPA |
Key configurations:
--tensor-parallel-size - Multi-GPU inference--max-model-len - Context window--gpu-memory-utilization - Memory efficiencybitsandbytes-nf4)Deployment manifests: resources/manifests.yaml
# values.yaml structure
inference:
enabled: true
replicas: 2
framework: "vllm" # vllm, tgi, triton
resources:
limits:
nvidia.com/gpu: 1
autoscaling:
enabled: true
minReplicas: 1
maxReplicas: 10
vectorDB:
enabled: true
type: "qdrant"
monitoring:
enabled: true
Scale on:
DCGM_FI_DEV_GPU_UTIL)Scale on:
HPA/KEDA configs: resources/manifests.yaml
| Metric | Source | Purpose |
|---|---|---|
| GPU Utilization | DCGM Exporter | Scaling |
| Inference Latency | Prometheus | SLO |
| Tokens/Second | Custom | Throughput |
| Queue Length | App metrics | Scaling |
# Install DCGM Exporter
helm install dcgm-exporter nvidia/dcgm-exporter
# ServiceMonitor for Prometheus
# See resources/manifests.yaml
g5.2xlarge, p4d.24xlargeAL2_x86_64_GPUStandard_NC*, Standard_ND*NC24ads_A100_v4BM.GPU.A100-v2.8, VM.GPU.A10Terraform examples: ../terraform-iac/resources/modules.tf
Deploy AI workloads at scale with GPU-optimized Kubernetes.