Where is the api/dashboard server after Kubespray install?

I installed a cluster on the 3 VMware vm machines on my laptop, by running the Kubespray installation scripts: GitHub - kubernetes-sigs/kubespray: Deploy a Production Ready Kubernetes Cluster. it finished successfully, but after the install, I don’t know where the control UI is. on this wiki kubespray/getting-started.md at master · kubernetes-sigs/kubespray · GitHub it says to connect to localhost:8080 , but on which of the 3 nodes? tried all 3 nodes, none of them has the 8080 open. additionally the kubectl command is missing on one of the hosts.

the Kubespray scripts was run from node1 of the 3 nodes.

Cluster information:

Kubernetes version: from current kubespray github GitHub - kubernetes-sigs/kubespray: Deploy a Production Ready Kubernetes Cluster
Cloud being used: bare-meta
Installation method:kubespray
Host OS: ubuntu 18
CNI and version: N/A
CRI and version: N/A

hosts.yaml:

all:
hosts:
node1:
ansible_host: 172.16.100.214
ip: 172.16.100.214
access_ip: 172.16.100.214
node2:
ansible_host: 172.16.100.221
ip: 172.16.100.221
access_ip: 172.16.100.221
node3:
ansible_host: 172.16.100.241
ip: 172.16.100.241
access_ip: 172.16.100.241
children:
kube-master:
hosts:
node1:
node2:
kube-node:
hosts:
node1:
node2:
node3:
etcd:
hosts:
node1:
node2:
node3:
k8s-cluster:
children:
kube-master:
kube-node:
calico-rr:
hosts: {}

Did you manage to find a solution? To be honest, I’ve never come across such an issue with kubernetes.