我尝试安装 Traefik Web UI,但在 Vagrant 下,没有 Minikube。这是一个多节点设置。在主机上,我尝试在localhost:8081
(Vagrantfile 中暴露给主机的访客 8080 端口)和https://localhost:6443/api/v1/namespaces/kube-system/services/https:traefik-web-ui:/proxy/
没有运气的情况下访问 UI。你能推荐一个工作环境吗?在最后一个 URL 上,我收到此错误:
{
"kind": "Status",
"apiVersion": "v1",
"metadata": {
},
"status": "Failure",
"message": "no endpoints available for service \"https:traefik-web-ui:\"",
"reason": "ServiceUnavailable",
"code": 503
}
通过 SSH 连接到主机,Web UI 正在工作:
vagrant@my-project-master:/vagrant$ kubectl get services --namespace=kube-system
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
...
traefik-ingress-service ClusterIP 10.110.210.58 <none> 80/TCP,8080/TCP 4m30s
traefik-web-ui ClusterIP 10.98.235.112 <none> 80/TCP 4m29s
vagrant@my-project-master:/vagrant$ curl 10.110.210.58:8080/dashboard/
<!doctype html><html class="has-navbar-fixed-top"><head><meta charset="utf-8"><title>Traefik</title><base href="./"><meta name="viewport" content="width=device-width,initial-scale=1"><link rel="icon" type="image/x-icon" href="./assets/images/traefik.icon.png"><link href="styles.e21e21d47be645f690e6.bundle.css" rel="stylesheet"/></head><body><app-root></app-root><script type="text/javascript" src="inline.318b50c57b4eba3d437b.bundle.js"></script><script type="text/javascript" src="polyfills.1457c99db4b6dba06e8d.bundle.js"></script><script type="text/javascript" src="scripts.ef668c5c0d42ec4c5e83.bundle.js"></script><script type="text/javascript" src="main.f341693bf9ed22060b42.bundle.js"></script></body></html>
当前ui.yml
:
---
apiVersion: v1
kind: Service
metadata:
name: traefik-web-ui
namespace: kube-system
spec:
selector:
k8s-app: traefik-ingress-lb
ports:
- name: web
port: 80
targetPort: 8080
---
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
name: traefik-web-ui
namespace: kube-system
spec:
rules:
#- host: traefik-ui.minikube
- host: traefik-ui.local
http:
paths:
- path: /
backend:
serviceName: traefik-web-ui
servicePort: web
安装:
kubectl apply -f https://raw.githubusercontent.com/containous/traefik/master/examples/k8s/traefik-rbac.yaml
kubectl apply -f https://raw.githubusercontent.com/containous/traefik/master/examples/k8s/traefik-ds.yaml
#kubectl apply -f https://raw.githubusercontent.com/containous/traefik/master/examples/k8s/ui.yaml
kubectl apply -f /vagrant/hashicorp/manifests/traefik/ui.yml
我如何才能访问主机上的 Web UI,最好仅通过安装的证书使其可用于主机浏览器?
我同样使用 Kubernetes 仪表板,证书安装在主机浏览器上。