ワンクリックで
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.