本资源包含三个镜像tar包文件,分别为: centos.tar 、 kubernetes-dashboard.tar 、 pod-infrastructure.tar。下载后load至docker镜像列表,然后push至镜像仓库即可
2023-12-24 17:46:55 179.99MB centos.tar kubernetes-dashb
1
devops之k8s的kubernetes-dashboard安装文件,适用于1.23.x版本 来源:https://raw.githubusercontent.com/kubernetes/dashboard/v2.5.1/aio/deploy/recommended.yaml 博文:https://blog.csdn.net/master336/article/details/127396234
2022-10-19 09:07:23 7KB k8s kubernetes-dashb
1
k8s-二进制软件包.zip
2021-05-21 20:00:34 452.26MB k8s kube-flannel.yml coredns.yaml kubernetes-dashb
1
k8s.gcr.io/kubernetes-dashboard:v2.0.0-beta4镜像tar包,使用 docker load --input kubernetes-dashboard_v2.0.0-beta4.tar进行导入
2021-03-28 14:06:07 80.48MB k8s.gcr.io kubernetes-dashb
1
本资源是笔者博文快速部署一套k8s中的2个配置文件, 快速部署一套k8s(https://blog.csdn.net/u011127242/article/details/108290429) 1 k8s 基础 2 环境准备和kubeadm 3 部署master与node加入集群 4 部署k8s UI
2021-01-28 04:08:22 3KB kube-flannel kubernetes-dashb
1
# Copyright 2017 The Kubernetes Authors. # # 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. # ------------------- Dashboard Secret ------------------- # apiVersion: v1 kind: Secret metadata: labels: k8s-app: kubernetes-dashboard name: kubernetes-dashboard-certs namespace: kube-system type: Opaque --- # ------------------- Dashboard Service Account ------------------- # apiVersion: v1 kind: ServiceAccount metadata: labels: k8s-app: kubernetes-dashboard name: kubernetes-dashboard namespace: kube-system --- # ------------------- Dashboard Role & Role Binding ------------------- # kind: Role apiVersion: rbac.authorization.k8s.io/v1 metadata: name: kubernetes-dashboard-minimal namespace: kube-system rules: # Allow Dashboard to create 'kubernetes-dashboard-key-holder' secret. - apiGroups: [""] resources: ["secrets"] verbs: ["create"] # Allow Dashboard to create 'kubernetes-dashboard-settings' config map. - apiGroups: [""] resources: ["configmaps"] verbs: ["create"] # Allow Dashboard to get, update and delete Dashboard exclusive secrets. - apiGroups: [""] resources: ["secrets"] resourceNames: ["kubernetes-dashboard-key-holder", "kubernetes-dashboard-certs"] verbs: ["get", "update", "delete"] # Allow Dashboard to get and update 'kubernetes-dashboard-settings' config map. - apiGroups: [""] resources: ["configmaps"] resourceNames: ["kubernetes-dashboard-settings"] verbs: ["get", "update"] # Allow Dashboard to get metrics from heaps
2020-01-25 03:07:22 5KB kubernetes-dashb
1