coreweave-install-auth

Featured

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".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# CoreWeave Install & Auth ## 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 - CoreWeave account at https://cloud.coreweave.com - `kubectl` v1.28+ installed - Kubernetes namespace provisioned by CoreWeave ## Instructions ### Step 1: Download Kubeconfig 1. Log in to https://cloud.coreweave.com 2. Navigate to **API Access** > **Kubeconfig** 3. Download the kubeconfig file ```bash # Save kubeconfig mkdir -p ~/.kube cp ~/Downloads/coreweave-kubeconfig.yaml ~/.kube/coreweave # Set as active context export KUBECONFIG=~/.kube/coreweave # Verify connection kubectl get nodes kubectl get namespaces ``` ### Step 2: Configure API Token ```bash # CoreWeave API token for programmatic access export COREWEAVE_API_TOKEN="your-api-token" # Store securely echo "COREWEAVE_API_TOKEN=${COREWEAVE_API_TOKEN}" >> .env echo "KUBECONFIG=~/.kube/coreweave" >> .env ``` ### Step 3: Verify GPU Access ```bash # List available GPU nodes 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 # Check GPU allocatable resources kubectl describe nodes | grep -A5 "Allocatable:" | grep nvidia ``` ### Step 4: Test with a Simple GPU Pod ```yaml # test-gpu.yaml apiVersion: v1 kind: Pod metadata: name: gpu-test spec: r...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

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".

2,266 Updated today
jeremylongshore
AI & Automation Featured

coreweave-security-basics

Secure CoreWeave deployments with RBAC, network policies, and secrets management. Use when hardening GPU workloads, managing model access, or configuring namespace isolation. Trigger with phrases like "coreweave security", "coreweave rbac", "secure coreweave", "coreweave secrets".

2,266 Updated today
jeremylongshore
DevOps & Infrastructure Featured

coreweave-ci-integration

Integrate CoreWeave deployments into CI/CD pipelines with GitHub Actions. Use when automating container builds, deploying inference services from CI, or validating GPU manifests in pull requests. Trigger with phrases like "coreweave CI", "coreweave github actions", "coreweave pipeline", "automate coreweave deploy".

2,266 Updated today
jeremylongshore
AI & Automation Featured

coreweave-hello-world

Deploy a GPU workload on CoreWeave with kubectl. Use when running your first GPU job, testing inference, or verifying CoreWeave cluster access. Trigger with phrases like "coreweave hello world", "coreweave first deploy", "coreweave gpu test", "run on coreweave".

2,266 Updated today
jeremylongshore
AI & Automation Featured

coreweave-local-dev-loop

Set up local development workflow for CoreWeave GPU deployments. Use when building containers locally, testing YAML manifests, or iterating on model serving configurations before deploying. Trigger with phrases like "coreweave dev setup", "coreweave local testing", "develop for coreweave", "coreweave container build".

2,266 Updated today
jeremylongshore