vllm-deployment — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited vllm-deployment (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Target audience: platform engineers bringing up vLLM on production Kubernetes (H100/H200/B200/B300 fleets), and individual researchers running 1-to-2-node Docker / Podman setups in a lab.
This skill is a pointer map. It points to the canonical sources — in the vLLM repo, in docs.vllm.ai, in the ecosystem repos, and to the load-bearing blog posts — rather than paraphrasing them. Paraphrase rots; pointers survive.
| Situation | Go to |
|---|---|
| Single node, 1 container, TP ≤ 8 | references/docker-lab.md |
| Single host, 2 containers for PD disagg lab | references/docker-lab.md (compose template) + references/disagg.md |
| k8s, single model fits 1 pod | references/pod-shape.md + in-tree helm chart |
| k8s, model needs multi-node TP/PP | references/multi-node.md (LWS + multi-node-serving.sh) |
| k8s fleet, router + LMCache + observability bundled | vllm-production-stack (Helm) — see references/ecosystem.md |
| k8s fleet, disagg P/D + KV-aware + GAIE + SLA scheduler | llm-d — see references/ecosystem.md |
| k8s fleet, ByteDance-scale multi-tenant LoRA + heterogenous GPU | AIBrix — see references/ecosystem.md |
| NVIDIA reference stack on prem / EKS / AKS with NIXL | NVIDIA Dynamo — see references/ecosystem.md |
| OpenShift / RHOAI | references/openshift.md + RHAIIS images |
| Routing / load balancing across pods | references/routing.md (GAIE, Envoy AI Gateway, Istio, production-stack router, semantic-router) |
| Air-gapped k8s or OCP | references/openshift.md §air-gapped + vllm-configuration skill for HF mirror |
--ipc=host. Without a shared-memory volume, torch.distributed segfaults on the first all-reduce of a TP>1 pod. Mount an emptyDir with medium: Memory and sizeLimit: 10Gi at /dev/shm. Documented in vLLM's own k8s guide — see `vllm repo: docs/deployment/k8s.md:209,289`.parallel-config + pure headless-Service path exists but is not the vLLM-endorsed recipe. Use LeaderWorkerSet (kubernetes-sigs/lws) as the gang-scheduling primitive and examples/online_serving/multi-node-serving.sh (which bootstraps Ray head/worker) as the entrypoint. Since Nov 2025 the ray symmetric-run pattern replaces the old head/worker split — see https://blog.vllm.ai/2025/11/22/ray-symmetric-run.html.restricted-v2 PSA), that is a deploy-time failure. Either rebuild with chgrp -R 0 /root /tmp && chmod -R g=u /root /tmp, or use the Red Hat RHAIIS images (registry.redhat.io/rhaiis/vllm-cuda-rhel9:3.3.0), which are UID-agnostic by construction.# Deployment essentials — not a complete manifest. Full annotated template in references/pod-shape.md.
spec:
template:
spec:
containers:
- name: vllm
image: vllm/vllm-openai:<pinned-tag> # do NOT use :latest
args: ["--model", "$(MODEL)", "--tensor-parallel-size", "8",
"--disable-access-log-for-endpoints", "/health,/metrics,/ping"]
env:
- {name: VLLM_HOST_IP, valueFrom: {fieldRef: {fieldPath: status.podIP}}}
- {name: HF_HOME, value: /models/.cache} # pre-warmed PVC or ModelCar
- {name: VLLM_NO_USAGE_STATS, value: "1"} # disable telemetry
- {name: VLLM_DO_NOT_TRACK, value: "1"}
# For multi-NIC nodes (SR-IOV, RDMA, multiple eth):
# - {name: NCCL_SOCKET_IFNAME, value: "eth0"}
# - {name: NCCL_IB_HCA, value: "mlx5_*"}
ports: [{containerPort: 8000, name: http}]
readinessProbe: {httpGet: {path: /health, port: http}, periodSeconds: 5, failureThreshold: 3}
livenessProbe: {httpGet: {path: /health, port: http}, periodSeconds: 10, failureThreshold: 3, initialDelaySeconds: 600}
resources:
limits: {nvidia.com/gpu: 8}
volumeMounts:
- {name: dshm, mountPath: /dev/shm} # LOAD-BEARING
- {name: models, mountPath: /models}
volumes:
- name: dshm
emptyDir: {medium: Memory, sizeLimit: 10Gi} # LOAD-BEARING
- name: models
persistentVolumeClaim: {claimName: vllm-model-cache}
nodeSelector: {nvidia.com/gpu.product: NVIDIA-H200}The initialDelaySeconds: 600 on the liveness probe is not excessive — cold model loads on a 405B FP8 take 8–12 min. A 30 s default makes the pod liveness-kill before it ever becomes ready. See VLLM_ENGINE_READY_TIMEOUT_S (default 600 s) in `vllm repo: vllm/envs.py`.
Full annotated manifest (all env vars, all probes, PVC vs ModelCar choice, nodeSelector per SM, RuntimeClass for nvidia) in references/pod-shape.md.
This skill owns the pod/container/topology layer. It does not own:
vllm-observability. This skill points autoscaling at the metric names; vllm-observability owns their semantics and pitfalls.vllm-caching. This skill covers which pod topology supports cross-pod KV transfer; vllm-caching covers how to size the tiers.vllm-performance-tuning. This skill gets the pod running; that skill makes it fast.vllm-benchmarking.vllm-configuration. This skill shows where the env vars go in the pod spec; that one explains what they do.vllm-nvidia-hardware.vllm-openai entrypoint contract.ray symmetric-run; NCCL on k8s (shm, SR-IOV, RoCE, InfiniBand, NCCL_SOCKET_IFNAME/NCCL_IB_HCA); the in-repo multi-node-serving.sh/run_cluster.sh; known issue list.InferencePool, InferenceModel, EPP), production-stack router, semantic-router, kgateway/Istio/NGF, OCP Route SSE timeout gotcha.vllm:num_requests_waiting, cooldown discipline (cooldownPeriod: 360), HPA with custom metrics, scale-to-zero, llm-d WVA.docker run canonical flags, --shm-size vs --ipc=host, --gpus, MIG strings, Podman/podman-compose, rootless friction, 2-node disagg compose template.| Path | What it is |
|---|---|
docs/deployment/k8s.md | Canonical K8s guide |
docs/deployment/docker.md | Canonical Docker run reference |
docs/deployment/nginx.md | Multi-server LB with Nginx |
docs/deployment/frameworks/lws.md | LeaderWorkerSet recipe |
docs/deployment/frameworks/helm.md | Helm chart usage |
docs/deployment/frameworks/kserve.md | KServe runtime |
docs/deployment/integrations/{llm-d,production-stack,aibrix,dynamo,kubeRay,kthena,kubeai,kaito,llama-stack,llmaz}.md | Ecosystem landing pages |
examples/online_serving/chart-helm/ | In-tree Helm chart (v0.0.1, experimental) |
examples/online_serving/multi-node-serving.sh | Ray leader/worker bootstrap |
examples/online_serving/run_cluster.sh | Docker-based Ray cluster (--shm-size 10.24g --ipc=host --gpus all) |
examples/online_serving/disaggregated_serving/ | PD-split proxy demos (XpYd, KV events, Mooncake) |
examples/online_serving/disaggregated_prefill.sh | PD launcher |
vllm/envs.py | Canonical env-var catalogue |
vllm/distributed/kv_transfer/ | KV connector implementations (LMCache, Mooncake, MORI-IO, NIXL, P2P-NCCL, HF3FS) |
vllm/entrypoints/serve/instrumentator/health.py | /health endpoint (200 healthy, 503 EngineDeadError) |
Dockerfile{,.rocm,.cpu,.tpu,.xpu,.nightly_torch,.ppc64le,.s390x} | Image variants |
All paths relative to vLLM repo root (https://github.com/vllm-project/vllm).
One-shot smoke test covering all critical checks:
${CLAUDE_SKILL_DIR}/scripts/deployment-smoke.sh <pod-name> [namespace]The script validates pod health, /health, /v1/models, /dev/shm sizing, /metrics surface, NCCL env on multi-GPU pods, usage-stats opt-out, and image-tag discipline. Output is color-coded pass/warn/fail; exits non-zero on critical failure.
Or run ad-hoc:
kubectl exec -it <pod> -- curl -fsS http://localhost:8000/health
kubectl exec -it <pod> -- curl -fsS http://localhost:8000/v1/models
kubectl exec -it <pod> -- df -h /dev/shm # sizeLimit, not 64M default
kubectl exec -it <leader-pod> -- ray status # LWS leader
kubectl exec -it <pod> -- env | grep -E '^(NCCL_|GLOO_|VLLM_HOST_IP)'
kubectl exec -it <pod> -- curl -s http://localhost:8000/metrics | grep -c '^vllm:'If any check fails, the corresponding reference file has a diagnostic flow.
references/pod-shape.md.initialDelaySeconds: 30 vs 8–12 min cold load → pod liveness-kill loop. Fixed at 600 s; tighten only after warm.references/openshift.md.cooldownPeriod: 360. See references/autoscaling.md.haproxy.router.openshift.io/timeout: 10m.VLLM_NO_USAGE_STATS=1 VLLM_DO_NOT_TRACK=1 — especially in regulated/air-gapped environments.Canonical entry: https://docs.vllm.ai/en/stable/deployment/ — topic URLs live in the reference files (references/ecosystem.md, references/multi-node.md, references/openshift.md).
Sibling skills: vllm-observability, vllm-caching, vllm-performance-tuning, vllm-benchmarking, vllm-configuration, vllm-nvidia-hardware, helm, openshift-app.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.