Skillshub coreweave-deploy-integration

install
source · Clone the upstream repo
git clone https://github.com/ComeOnOliver/skillshub
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/ComeOnOliver/skillshub "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/jeremylongshore/claude-code-plugins-plus-skills/coreweave-deploy-integration" ~/.claude/skills/comeonoliver-skillshub-coreweave-deploy-integration && rm -rf "$T"
manifest: skills/jeremylongshore/claude-code-plugins-plus-skills/coreweave-deploy-integration/SKILL.md
source content

CoreWeave Deploy Integration

Helm Chart for Inference Service

# helm/values.yaml
replicaCount: 2
image:
  repository: vllm/vllm-openai
  tag: latest
gpu:
  type: A100_PCIE_80GB
  count: 1
  memory: 48Gi
model:
  name: meta-llama/Llama-3.1-8B-Instruct
autoscaling:
  enabled: true
  minReplicas: 1
  maxReplicas: 5
  targetConcurrency: 2
helm install my-inference ./helm -f values-prod.yaml
helm upgrade my-inference ./helm -f values-prod.yaml

Kustomize Overlays

k8s/
├── base/
│   ├── deployment.yaml
│   ├── service.yaml
│   └── kustomization.yaml
├── overlays/
│   ├── dev/
│   │   ├── gpu-patch.yaml       # L40 GPU for dev
│   │   └── kustomization.yaml
│   └── prod/
│       ├── gpu-patch.yaml       # A100/H100 for prod
│       ├── replicas-patch.yaml
│       └── kustomization.yaml
kubectl apply -k k8s/overlays/prod/

Resources

Next Steps

For event monitoring, see

coreweave-webhooks-events
.