我已经修改了穴居图在https://github.com/yolean/kubernetes-kafka/tree/master/linkedin-burrow一切正常。我已经把我的洞穴部署转移到localhost:8000当我到达api端点时,我收到的是正确的输出。不过,burrow Jmeter 板api并没有出现。如何获得用户界面?附加屏幕截图以供参考附加kubernetes部署细节
ndasle7k1#
创建公开部署的服务对象: $ kubectl expose deployment your-deployment --type=LoadBalancer --name=your-service 查看有关服务的一些信息: $ kubectl get services your-service 输出应类似于:
$ kubectl expose deployment your-deployment --type=LoadBalancer --name=your-service
$ kubectl get services your-service
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE your-service LoadBalancer x.y.a.b c.d.e.f 8080/TCP 10s
如果外部ip地址处于状态,请稍等片刻,然后再次执行相同的命令。要访问burrow ui,您需要定义ip并将它们添加到主机文件(在linux上是/etc/hosts)
vi /etc/hosts your_borrow_external_ip www.preffered-name-of-site.com
鸡蛋:
vi /etc/hosts 10.107.12.12 www.example.com
然后使用外部ip地址(loadbalancer入口)访问您的应用程序: http://<external-ip>:<port> 更多信息请参见: exposing-application .希望对你有帮助。
http://<external-ip>:<port>
exposing-application
1条答案
按热度按时间ndasle7k1#
创建公开部署的服务对象:
$ kubectl expose deployment your-deployment --type=LoadBalancer --name=your-service
查看有关服务的一些信息:$ kubectl get services your-service
输出应类似于:如果外部ip地址处于状态,请稍等片刻,然后再次执行相同的命令。
要访问burrow ui,您需要定义ip并将它们添加到主机文件(在linux上是/etc/hosts)
鸡蛋:
然后使用外部ip地址(loadbalancer入口)访问您的应用程序:
http://<external-ip>:<port>
更多信息请参见:exposing-application
.希望对你有帮助。