| name | coreweave-install-auth |
| description | Configure CoreWeave Kubernetes Service (CKS) access with kubeconfig and API tokens.
Use when setting up kubectl access to CoreWeave, configuring CKS clusters,
or authenticating with CoreWeave cloud services.
Trigger with phrases like "install coreweave", "setup coreweave",
"coreweave kubeconfig", "coreweave auth", "connect to coreweave".
|
| allowed-tools | Read, Write, Edit, Bash(kubectl:*), Grep |
| version | 1.11.0 |
| license | MIT |
| author | Jeremy Longshore <jeremy@intentsolutions.io> |
| tags | ["saas","gpu-cloud","kubernetes","inference","coreweave"] |
| compatibility | Designed for Claude Code |
CoreWeave Install & Auth
Community-contributed. Not affiliated with, endorsed by, or sponsored by CoreWeave, Inc. CoreWeave is a registered trademark of CoreWeave, Inc.
Overview
Set up access to CoreWeave Kubernetes Service (CKS). CKS runs bare-metal Kubernetes with NVIDIA GPUs -- no hypervisor overhead. Access is via standard kubeconfig with CoreWeave-issued credentials.
Prerequisites
Instructions
Step 1: Download Kubeconfig
- Log in to https://cloud.coreweave.com
- Navigate to API Access > Kubeconfig
- Download the kubeconfig file
mkdir -p ~/.kube
cp ~/Downloads/coreweave-kubeconfig.yaml ~/.kube/coreweave
export KUBECONFIG=~/.kube/coreweave
kubectl get nodes
kubectl get namespaces
Step 2: Configure API Token
export COREWEAVE_API_TOKEN="your-api-token"
echo "COREWEAVE_API_TOKEN=${COREWEAVE_API_TOKEN}" >> .env
echo "KUBECONFIG=~/.kube/coreweave" >> .env
Step 3: Verify GPU Access
kubectl get nodes -l gpu.nvidia.com/class -o custom-columns=\
NAME:.metadata.name,GPU:.metadata.labels.gpu\.nvidia\.com/class,\
STATUS:.status.conditions[-1].type
kubectl describe nodes | grep -A5 "Allocatable:" | grep nvidia