Skip to content

5. Confirm it worked

The quick check

Clusters → dane-first-cluster.

Field Expected
Cluster status Running
Health Healthy
Nodes 1, Ready
Profile dane-agent-basic

If that is what you see, you have built a working Kubernetes cluster. That is the milestone.

screenshot — cluster overview, Running / Healthy

The check that actually proves the variables worked

A cluster can look healthy while the networking is quietly wrong — that is the failure described in step 3. Two minutes to rule it out.

  1. On the cluster page, open the Nodes tab.
  2. Click your node and look at the pod IP addresses listed against it.

Every pod address should begin 100.64..

If you see 192.168. or 10. addresses instead, one of the three edits did not take. Go back to step 3 and check all three — most often it is the Cilium one.

Optional: look inside with kubectl

Not required, but this is how anyone technical will inspect it.

  1. On the cluster page, top right, click the kubeconfig download icon.
  2. From a terminal with kubectl installed:
Point kubectl at your cluster
export KUBECONFIG=~/Downloads/dane-first-cluster.kubeconfig
kubectl get nodes
Expected
NAME                                    STATUS   ROLES           AGE   VERSION
edge-06396f804bc511eb80001ceec94be53d   Ready    control-plane   12m   v1.36.2
Confirm the pod network really is 100.64.x.x
kubectl get pods -A -o wide

Every address in the IP column should sit inside 100.64.0.0/18.

What you have now

  • A reusable profile — deploy it again on any registered edge host, in minutes
  • Two variables anyone can change at deploy time without touching YAML
  • A live single-node cluster ready to have things installed on it

Cleaning up

Leave it running if you want to keep experimenting. To remove it: Clusters → dane-first-cluster → Settings → Delete Cluster. Deleting the cluster releases the node back to Ready so it can be claimed again. It does not delete the profile — that stays for next time.