Create a cluster
Create a shared managed cluster and connect kubectl to it.
Create the cluster
Section titled “Create the cluster”kupe cluster create devThe command waits for the cluster to reach Running (usually 1–2 minutes).
- Open Clusters and click Create Cluster.
- Name it
dev, leave the defaults (shared nodes, latest version). - Click Create and wait for Phase: Running.
Merge kubeconfig
Section titled “Merge kubeconfig”kupe cluster kubeconfig dev --mergeThis adds a context like kupe-<tenant>-dev to ~/.kube/config.
Open the cluster → CLI Access → download the OIDC kubeconfig, then:
export KUBECONFIG=~/Downloads/dev-oidc.kubeconfigVerify
Section titled “Verify”kubectl get nsYou should see default, kube-system, argocd, and a few others.
Deploy your first app.
For the details behind OIDC vs token kubeconfigs, see Cluster Access.