DocsKubernetesCreate a Cluster
Kubernetes

Create a Cluster

Provision a Kubernetes cluster in under 5 minutes.

Via the dashboard

1. Go to Dashboard → Kubernetes 2. Click Create Cluster 3. Choose node count, node size and region 4. Click Deploy

Your cluster will be ready in ~5 minutes.

Via CLI

bash
wc k8s create \
  --name prod-cluster \
  --nodes 3 \
  --size vps.medium \
  --region af-ke-1

# Watch cluster status
wc k8s status prod-cluster

Download kubeconfig

Once the cluster is running, download the kubeconfig file and merge it into your local kubectl configuration.

bash
# Download kubeconfig
wc k8s kubeconfig prod-cluster > ~/.kube/wasaa-config

# Use it
export KUBECONFIG=~/.kube/wasaa-config
kubectl get nodes
← Previous
Managed Kubernetes
Next →
kubectl Access

Was this article helpful?

Need more help? Open a support ticket

On this page

Via the dashboard
Via CLI
Download kubeconfig
Get support