> coreweave-deploy-integration
Deploy inference services on CoreWeave with Helm charts and Kustomize. Use when deploying multi-model inference, managing GPU deployments at scale, or templating CoreWeave manifests. Trigger with phrases like "deploy coreweave", "coreweave helm", "coreweave kustomize", "coreweave deployment patterns".
curl "https://skillshub.wtf/jeremylongshore/claude-code-plugins-plus-skills/coreweave-deploy-integration?format=md"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.
> related_skills --same-repo
> fathom-cost-tuning
Optimize Fathom API usage and plan selection. Trigger with phrases like "fathom cost", "fathom pricing", "fathom plan".
> fathom-core-workflow-b
Sync Fathom meeting data to CRM and build automated follow-up workflows. Use when integrating Fathom with Salesforce, HubSpot, or custom CRMs, or creating automated post-meeting email summaries. Trigger with phrases like "fathom crm sync", "fathom salesforce", "fathom follow-up", "fathom post-meeting workflow".
> fathom-core-workflow-a
Build a meeting analytics pipeline with Fathom transcripts and summaries. Use when extracting insights from meetings, building CRM sync, or creating automated meeting follow-up workflows. Trigger with phrases like "fathom analytics", "fathom meeting pipeline", "fathom transcript analysis", "fathom action items sync".
> fathom-common-errors
Diagnose and fix Fathom API errors including auth failures and missing data. Use when API calls fail, transcripts are empty, or webhooks are not firing. Trigger with phrases like "fathom error", "fathom not working", "fathom api failure", "fix fathom".