0

我使用以下命令来部署 K8S 仪表板:

kubectl apply -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.0.0-beta6/aio/deploy/recommended.yaml

kubectl proxy

它说仪表板在主节点上的以下 URL 上运行:

http://localhost:8001/api/v1/namespaces/kubernetes-dashboard/services/https:kubernetes-dashboard:/proxy/

如何在工作程序节点上部署仪表板?

4

1 回答 1

1

您能否从 YAML 中评论或删除以下部分

      # Comment the following tolerations if Dashboard must not be deployed on master
      tolerations:
        - key: node-role.kubernetes.io/master
          effect: NoSchedule
于 2019-12-05T09:48:21.987 回答