Skillshub coreweave-upgrade-migration
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-upgrade-migration" ~/.claude/skills/comeonoliver-skillshub-coreweave-upgrade-migration && rm -rf "$T"
manifest:
skills/jeremylongshore/claude-code-plugins-plus-skills/coreweave-upgrade-migration/SKILL.mdsource content
CoreWeave Upgrade & Migration
GPU Type Migration
# Before: A100 affinity: nodeAffinity: requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - key: gpu.nvidia.com/class operator: In values: ["A100_PCIE_80GB"] # After: H100 (update affinity label) values: ["H100_SXM5"]
Migration Steps
- Build new container with updated CUDA version if needed
- Deploy with new GPU affinity alongside old deployment
- Shift traffic gradually (canary)
- Validate latency and throughput match or improve
- Scale down old deployment
CUDA Version Matrix
| GPU Type | Recommended CUDA | Driver |
|---|---|---|
| A100 | CUDA 12.2+ | 535+ |
| H100 | CUDA 12.4+ | 550+ |
| L40 | CUDA 12.2+ | 535+ |
Rollback
kubectl rollout undo deployment/my-inference
Resources
Next Steps
For CI/CD, see
coreweave-ci-integration.