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.
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.
- On the cluster page, open the Nodes tab.
- 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.
- On the cluster page, top right, click the kubeconfig download icon.
- From a terminal with
kubectlinstalled:
export KUBECONFIG=~/Downloads/dane-first-cluster.kubeconfig
kubectl get nodes
NAME STATUS ROLES AGE VERSION
edge-06396f804bc511eb80001ceec94be53d Ready control-plane 12m v1.36.2
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.