From cluster-setup
Set up OpenShift clusters with optional NVIDIA GPU and DRA support on AWS and GCP
How this skill is triggered — by the user, by Claude, or both
Slash command
/cluster-setup:cluster-setupThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Set up OpenShift clusters on AWS or GCP, optionally with NVIDIA GPU hardware and the DRA (Dynamic Resource Allocation) stack.
Set up OpenShift clusters on AWS or GCP, optionally with NVIDIA GPU hardware and the DRA (Dynamic Resource Allocation) stack.
# General-purpose cluster (no GPU)
${CLAUDE_PLUGIN_ROOT}/bin/setup.sh --cluster-name my-cluster --cloud aws --pull-secret ~/pull-secret.json --instance-type m6i.xlarge
# GPU cluster (hardware only, no DRA stack)
${CLAUDE_PLUGIN_ROOT}/bin/setup.sh --cluster-name gpu-test --cloud gcp --gpu t4 --pull-secret ~/pull-secret.json
# GPU cluster with full DRA stack (OCP 4.21+ required)
${CLAUDE_PLUGIN_ROOT}/bin/setup.sh --cluster-name dra-test --cloud gcp --gpu t4 --dra --pull-secret ~/pull-secret.json
# Teardown
${CLAUDE_PLUGIN_ROOT}/bin/teardown.sh --cluster-name my-cluster
| Mode | Flag | Phases | OCP Version |
|---|---|---|---|
| No GPU | --instance-type m6i.xlarge | Cluster creation only | Any |
| GPU hardware only | --gpu t4 | Cluster + GPU instance + MachineSet patching | Any |
| GPU + DRA stack | --gpu t4 --dra | Cluster + feature gates + cert-manager + NFD + GPU Operator + DRA Driver | 4.21+ |
| GPU | AWS Instance | GCP Instance | MIG | Notes |
|---|---|---|---|---|
| T4 | g4dn.xlarge | n1-standard-8 + accelerator | No | GCP needs post-install MachineSet patch |
| L4 | (GCP only) | g2-standard-8 | No | |
| A100 | p4d.24xlarge | a2-highgpu-1g | Yes | Cloud VMs need MIG workaround |
| H100 | p5.4xlarge | a3-highgpu-1g | Yes | Supports GPU reset natively |
# Check cluster and GPU health
${CLAUDE_PLUGIN_ROOT}/bin/status.sh
# Resume from a failed DRA phase
${CLAUDE_PLUGIN_ROOT}/bin/setup.sh --cluster-name X --cloud gcp --gpu t4 --dra --skip-cluster --skip-to gpu-operator --pull-secret ~/ps.json
--dra requires OCP 4.21+ (K8s 1.34+, resource.k8s.io/v1)Detailed guides loaded on demand:
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub pannagarao/cluster-setup --plugin cluster-setup