在Kubernetes内运行仪表板 [英] Running dashboard inside play-with-kubernetes

查看:148
本文介绍了在Kubernetes内运行仪表板的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试在 play-with-kubernetes 内启动仪表板

我正在运行的命令:

启动管理节点

kubeadm init --apiserver-advertise-address $(hostname -i)

启动网络

kubectl apply -n kube-system -f "https://cloud.weave.works/k8s/net?k8s-version=$(kubectl version | base64 | tr -d '\n')"

允许master持有节点(?)

kubectl taint nodes --all node-role.kubernetes.io/master-

等待直到dns启动

kubectl get pods --all-namespaces

加入节点(从管理员启动复制,而不是从此处复制)

kubeadm join --token 43d52c.d72308004d523ac4 10.0.21.3:6443

下载并运行仪表板

curl -L -s https://raw.githubusercontent.com/kubernetes/dashboard/master/src/deploy/recommended/kubernetes-dashboard.yaml  | sed 's/targetPort: 8443/targetPort: 8443\n  type: NodePort/' | \
    kubectl apply -f -

不幸的是,仪表板不可用. 我应该怎么做才能在Kubernetes内正确部署它?

解决方案

您需要使用heapster才能使仪表板正常工作.因此,也要执行以下命令:

kubectl apply -f https://github.com/kubernetes/heapster/raw/master/deploy/kube-config/rbac/heapster-rbac.yaml
kubectl apply -f https://github.com/kubernetes/heapster/raw/master/deploy/kube-config/influxdb/heapster.yaml
kubectl apply -f https://raw.githubusercontent.com/kubernetes/heapster/master/deploy/kube-config/influxdb/influxdb.yaml

此外,除非您想摆弄身份验证,否则需要授予仪表板管理员权限,如下所示:

kubectl create clusterrolebinding insecure-dashboard --clusterrole=cluster-admin --serviceaccount=kube-system:kubernetes-dashboard

最终会出现一个端口链接(30xxx),但是您需要将url方案从http更改为https-并说服您的浏览器您不关心不安全的证书.

您现在应该拥有一个正常工作的仪表板.小菜一碟;)

I'm trying to start a dashboard inside play-with-kubernetes

Commands I'm running:

start admin node

kubeadm init --apiserver-advertise-address $(hostname -i)

start network

kubectl apply -n kube-system -f "https://cloud.weave.works/k8s/net?k8s-version=$(kubectl version | base64 | tr -d '\n')"

allow master to hold nodes(?)

kubectl taint nodes --all node-role.kubernetes.io/master-

Wait until dns is up

kubectl get pods --all-namespaces

join node (copy from admin startup, not from here)

kubeadm join --token 43d52c.d72308004d523ac4 10.0.21.3:6443

download and run dashboard

curl -L -s https://raw.githubusercontent.com/kubernetes/dashboard/master/src/deploy/recommended/kubernetes-dashboard.yaml  | sed 's/targetPort: 8443/targetPort: 8443\n  type: NodePort/' | \
    kubectl apply -f -

Unfortunatelly dashboard is not available. What should I do to correctly deploy it inside play-with-kubernetes?

解决方案

You need heapster for dashboard to work. So execute these as well:

kubectl apply -f https://github.com/kubernetes/heapster/raw/master/deploy/kube-config/rbac/heapster-rbac.yaml
kubectl apply -f https://github.com/kubernetes/heapster/raw/master/deploy/kube-config/influxdb/heapster.yaml
kubectl apply -f https://raw.githubusercontent.com/kubernetes/heapster/master/deploy/kube-config/influxdb/influxdb.yaml

Also, unless you want to fiddle with authentication you need to grant dashboard admin privileges with something like this:

kubectl create clusterrolebinding insecure-dashboard --clusterrole=cluster-admin --serviceaccount=kube-system:kubernetes-dashboard

Eventually a port link will appear (30xxx) but you will need to change the url scheme to https from http - and convince your browser that you don't care about the insecure certificate.

You should have a working dashboard now. Piece of cake ;)

这篇关于在Kubernetes内运行仪表板的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆