Kubernetes 1.5安装 kubernetes dashboard

26 篇文章 0 订阅
7 篇文章 0 订阅

本篇内容接上一篇:http://blog.csdn.net/wenwst/article/details/54409205
如果安装kubernetes的版本为1.5.1,这可能对你也有用。

下载yaml文件

直接下载

wget  https://rawgit.com/kubernetes/dashboard/master/src/deploy/kubernetes-dashboard.yaml

或复制下面的内容自己创建kubernetes-dashboard.yaml

# Copyright 2015 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# Configuration to deploy release version of the Dashboard UI.
#
# Example usage: kubectl create -f <this_file>

kind: Deployment
apiVersion: extensions/v1beta1
metadata:
  labels:
    app: kubernetes-dashboard
  name: kubernetes-dashboard
  namespace: kube-system
spec:
  replicas: 1
  selector:
    matchLabels:
      app: kubernetes-dashboard
  template:
    metadata:
      labels:
        app: kubernetes-dashboard
      # Comment the following annotation if Dashboard must not be deployed on master
      annotations:
        scheduler.alpha.kubernetes.io/tolerations: |
          [
            {
              "key": "dedicated",
              "operator": "Equal",
              "value": "master",
              "effect": "NoSchedule"
            }
          ]
    spec:
      containers:
      - name: kubernetes-dashboard
        image: gcr.io/google_containers/kubernetes-dashboard-amd64:v1.5.0
        imagePullPolicy: Always
        ports:
        - containerPort: 9090
          protocol: TCP
        args:
          # Uncomment the following line to manually specify Kubernetes API server Host
          # If not specified, Dashboard will attempt to auto discover the API server and connect
          # to it. Uncomment only if the default does not work.
          # - --apiserver-host=http://my-address:port
        livenessProbe:
          httpGet:
            path: /
            port: 9090
          initialDelaySeconds: 30
          timeoutSeconds: 30
---
kind: Service
apiVersion: v1
metadata:
  labels:
    app: kubernetes-dashboard
  name: kubernetes-dashboard
  namespace: kube-system
spec:
  type: NodePort
  ports:
  - port: 80
    targetPort: 9090
  selector:
    app: kubernetes-dashboard

创建应用

kubectl create -f kubernetes-dashboard.yaml

检查

使用命令kubectl get pod –all-namespaces查看创建的pod

[root@centos-master new]# kubectl get pod --all-namespaces
NAMESPACE     NAME                                    READY     STATUS    RESTARTS   AGE
kube-system   dummy-2088944543-9zfjl                  1/1       Running   0          2d
kube-system   etcd-centos-master                      1/1       Running   0          2d
kube-system   kube-apiserver-centos-master            1/1       Running   0          2d
kube-system   kube-controller-manager-centos-master   1/1       Running   0          2d
kube-system   kube-discovery-1769846148-6ldk1         1/1       Running   0          2d
kube-system   kube-proxy-34q7p                        1/1       Running   0          2d
kube-system   kube-proxy-hqkkg                        1/1       Running   1          2d
kube-system   kube-proxy-nbgn3                        1/1       Running   0          2d
kube-system   kube-scheduler-centos-master            1/1       Running   0          2d
kube-system   kubernetes-dashboard-3095304083-w3fjd   1/1       Running   0          31m
kube-system   weave-net-kkdh9                         2/2       Running   0          1h
kube-system   weave-net-mtd83                         2/2       Running   0          48m
kube-system   weave-net-q91sr                         2/2       Running   2          1h

查看创建的服务
看到节点的端口为31551


[root@centos-master new]# kubectl describe svc kubernetes-dashboard --namespace=kube-system
Name: kubernetes-dashboard
Namespace: kube-system
Labels: app=kubernetes-dashboard
Selector: app=kubernetes-dashboard
Type: NodePort
IP: 10.96.35.20
Port: <unset> 80/TCP
NodePort: <unset> 31551/TCP
Endpoints: 10.40.0.1:9090
Session Affinity: None
No events.

通过节点的IP地址加刚看到的端口31551就可以看到kubernetes dashboard的界面了。

  • 1
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 2
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值