Accessing Kubernetes Web UI (Dashboard)

前端 未结 1 1389
忘了有多久
忘了有多久 2021-01-24 01:11

I have installed a Kubernetes with Kubeadm tool, and then followed the documentation to install the Web UI (Dashboard). Kubernetes is installed and running in one node instance

相关标签:
1条回答
  • 2021-01-24 02:00

    The URL you are using to access the dashboard is an endpoint on the API Server. By default, kubeadm deploys the API server on port 6443, and not on 443, which is what you would need to access the dashboard through https without specifying a port in the URL (i.e. https://<kubernetes-master>/ui)

    There are various ways you can expose and access the dashboard. These are ordered by increasing complexity:

    • If this is a dev/test cluster, you could try making kubeadm deploy the API server on port 443 by using the --api-port flag exposed by kubeadm.
    • Expose the dashboard using a service of type NodePort.
    • Deploy an ingress controller and define an ingress point for the dashboard.
    0 讨论(0)
提交回复
热议问题