51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

Docker笔记

kubesphere 安装 k8s etcd 启动失败

kubesphere 安装 k8s etcd 启动失败

厉飞雨 阅读(65) 评论(0) 赞(5)

kubesphere 安装 k8s etcd 启动失败 2:11:51 CST [ETCDConfigureModule] Restart etcd 12:11:51 CST stdout: [master] Job for etcd.service failed because the control process exited with er...

在kubesphere中使用 OpenELB

在kubesphere中使用 OpenELB

厉飞雨 阅读(61) 评论(0) 赞(3)

3 在kubesphere中使用 OpenELB 流程: 创建项目 -》 创建应用 -》 创建 SVC 服务 -》 应用路由 http://10.0.0.231:30880/clusters/default/monitor-cluster/overview ### 3.2.1创建项目 ![](http://static.51tbox.com/static/2024-08...

kubesphere 开启应用商店功能

kubesphere 开启应用商店功能

厉飞雨 阅读(50) 评论(0) 赞(4)

kubesphere 官方参考 :https://v3-2.docs.kubesphere.io/zh/docs/pluggable-components/app-store/ 在安装后启用应用商店 1. 使用 `admin` 用户登录控制台,点击左上角的**平台管理** ,选择**集群管理**。 2. 点击 **CRD** ,在搜索栏中输入 `clusterconfig...

kubesphere 安装与使用(k8s可视化操作)

kubesphere 安装与使用(k8s可视化操作)

厉飞雨 阅读(108) 评论(0) 赞(5)

kubesphere 安装与使用(k8s可视化操作) 可以在 linux上安装,也可以 基于K8s 安装。 [KubeSphere Documents](https://v2-1.docs.kubesphere.io/docs/zh-CN/) ![](http://static.51tbox.com/static/2024-08-29/col/e3dabf85da83e1...

k8s集群公共服务 Harbor 安装(docker)

k8s集群公共服务 Harbor 安装(docker)

厉飞雨 阅读(78) 评论(0) 赞(6)

KubeSphere集成本地容器镜像仓库 Harbor :[连接](https://51tbox.com/) 1 获取YUM源 -------- 使用阿里云开源软件镜像站。 ```  # wget https://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo -O /etc/yum.repos.d/doc...

docker 命令(docker命令)

docker 命令(docker命令)

厉飞雨 阅读(63) 评论(0) 赞(3)

docker 命令 指定命令运行 docker run -d --name kk3 kubesphere/builder-nodejs:v3.2.0 tail -f /etc/hosts 多平台容器镜像代理服务,支持 Docker Hub, GitHub, Google, k8s, Quay, Microsoft 等镜像仓库. 连接:<https...

dockerfile 配置 Python源

dockerfile 配置 Python源

厉飞雨 阅读(71) 评论(0) 赞(6)

**dockerfile中设置pip源** RUN pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple 还有几种方法: 在`FROM python:3.x`下插入: RUN mkdir ~/.pip && \ echo &quo...