摘要: 检查集群状态 ``` # ceph -s cluster: id: 83738b81-56e4-4d34-bdc2-3a60d789d224 health: HEALTH_WARN 75 pgs not scrubbed in time services: mon: 3 daemons, quoru 阅读全文
posted @ 2023-08-31 14:03 Chuyio 阅读(313) 评论(0) 推荐(0) 编辑
摘要: ``` D:\app\windows_amd64_client\npc.exe install -server=xxx.xxx.xxx.xxx:8069 -vkey=07sdz23ykge63p21 -type=tcp D:\app\windows_amd64_client\npc.exe star 阅读全文
posted @ 2023-08-29 11:07 Chuyio 阅读(347) 评论(0) 推荐(0) 编辑
摘要: ``` # Source: calico/templates/calico-kube-controllers.yaml # This manifest creates a Pod Disruption Budget for Controller to allow K8s Cluster Autosc 阅读全文
posted @ 2023-08-29 11:02 Chuyio 阅读(44) 评论(0) 推荐(0) 编辑
摘要: ``` apiVersion: v1 kind: ServiceAccount metadata: name: coredns namespace: kube-system apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRole meta 阅读全文
posted @ 2023-08-29 11:01 Chuyio 阅读(34) 评论(0) 推荐(0) 编辑
摘要: ``` git init git checkout -b main git remote add origin http://gitlab.wjl.net/root/xxxx.git git add . git commit -m "Initial commit" git push -u origi 阅读全文
posted @ 2023-08-20 16:03 Chuyio 阅读(15) 评论(0) 推荐(0) 编辑
摘要: ``` # git push -u origin main Username for 'http://gitlab.wjl.net': root Password for 'http://root@gitlab.wjl.net': Counting objects: 1032, done. Delt 阅读全文
posted @ 2023-08-19 15:38 Chuyio 阅读(184) 评论(0) 推荐(0) 编辑
摘要: ``` #!/bin/bash WORK_DIR=/root/harbor for STOP_COUNT_NUM in {1..10} do cd $WORK_DIR docker-compose stop if [ ! $? -eq 0 ]; then echo " STOP ERROR 正在进行 阅读全文
posted @ 2023-08-09 10:36 Chuyio 阅读(75) 评论(0) 推荐(0) 编辑
摘要: Kubernetes集成Ceph一般有两种方案:Ceph组件运行在Kubernetes中,可以使用Rook;还有就是Kubernetes集成外部的Ceph集群。 Ceph版本 ``` [root@master ~]# ceph -v ceph version 14.2.22 (ca745980650 阅读全文
posted @ 2023-08-07 21:50 Chuyio 阅读(249) 评论(0) 推荐(0) 编辑
摘要: ## 规划 | 主机名 | IP地址 | 系统 | ceph版本 | ceph硬盘 | 大小 | 组件 | 规划 | | | | | | | | | | | master | 192.168.1.60 | CentOS7.9 | ceph-15.2.10 | sdb | 100G | OSD、MOD 阅读全文
posted @ 2023-08-07 20:12 Chuyio 阅读(251) 评论(0) 推荐(0) 编辑
摘要: | 主机名 | IP地址 | Pod 网段 | Service 网段 | | | | | | | master | 192.168.10.10 | 172.16.0.0/12 | 10.96.0.0/16 | | node1 | 192.168.10.20 | 172.16.0.0/12 | 10. 阅读全文
posted @ 2023-07-29 19:59 Chuyio 阅读(47) 评论(0) 推荐(0) 编辑
摘要: ``` pipeline { agent { kubernetes { cloud 'kubernetes' yaml ''' apiVersion: v1 Kind: Pod spec: imagePullSecrets: - name: harbor-admin containers: - na 阅读全文
posted @ 2023-07-28 19:44 Chuyio 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 一步到胃! ``` cat /etc/ssh/ssh_config Host * SendEnv LANG LC_* IPQoS=throughput TCPKeepAlive yes AddKeysToAgent yes UseKeychain yes ServerAliveInterval 15 阅读全文
posted @ 2023-07-25 21:40 Chuyio 阅读(118) 评论(0) 推荐(0) 编辑
摘要: 一般删除步骤为:先删pod再删pvc最后删pv 但是遇到pv始终处于“Terminating”状态,而且delete不掉 1、查看pvc被哪个pod使用 ``` [root@hadoop03 storageclass]# kubectl describe pvc PVC-NAME | grep Mo 阅读全文
posted @ 2023-07-25 17:52 Chuyio 阅读(290) 评论(0) 推荐(0) 编辑
摘要: 之前部署过一套监控 ![](https://img2023.cnblogs.com/blog/1138462/202307/1138462-20230725123256597-72054531.png) 因为是本地测试环境,资源不太够,想着进行删除命名空间monitoring ``` [root@k 阅读全文
posted @ 2023-07-25 12:53 Chuyio 阅读(98) 评论(0) 推荐(0) 编辑
摘要: 容器状态一直重启 ``` [root@k8s-master01 sonarqube]# kubectl get pod -n ops NAME READY STATUS RESTARTS AGE gitlab-0 1/1 Running 0 170m pgsql-0 0/1 CrashLoopBac 阅读全文
posted @ 2023-07-25 00:40 Chuyio 阅读(333) 评论(0) 推荐(0) 编辑