摘要: 转载hxpjava1 https://blog.csdn.net/hxpjava1/article/details/86609663 本篇文章设计了运维部门岗位专业技能定级标准的一个总体框架。简述了该定级标准体系的设计方法论。 以我的理解,有这样一套岗位专业技能定级标准,可以有以下三个好处: 可以开 阅读全文
posted @ 2023-03-17 10:32 A学无止境A 阅读(1801) 评论(0) 推荐(0)
摘要: 借鉴于https://www.unixhot.com/page/cache 阅读全文
posted @ 2020-03-30 23:56 A学无止境A 阅读(171) 评论(0) 推荐(0)
摘要: 借鉴https://www.unixhot.com/page/ops 阅读全文
posted @ 2020-03-30 23:54 A学无止境A 阅读(267) 评论(0) 推荐(0)
摘要: ![](https://img2024.cnblogs.com/blog/1649374/202505/1649374-20250527183721877-256198456.png) 阅读全文
posted @ 2025-05-27 18:37 A学无止境A 阅读(44) 评论(0) 推荐(0)
摘要: 1.docker-compose部署gitlab cat docker-compose.yaml version: '3.6' services: web: image: 'gitlab/gitlab-ce:17.4.2-ce.0' restart: always hostname: 'git.op 阅读全文
posted @ 2025-05-08 16:11 A学无止境A 阅读(578) 评论(0) 推荐(0)
摘要: 查看k8s集群节点的平均内存使用率 curl -sG "100.64.0.118:9090/api/v1/query" --data-urlencode "query=avg((node_memory_MemTotal_bytes - node_memory_MemFree_bytes - node 阅读全文
posted @ 2025-04-21 11:27 A学无止境A 阅读(23) 评论(0) 推荐(0)
摘要: apiVersion: apps/v1 kind: DaemonSet metadata: name: node-exporter namespace: kuboard spec: selector: matchLabels: app: node-exporter template: metadat 阅读全文
posted @ 2025-04-02 19:02 A学无止境A 阅读(31) 评论(0) 推荐(0)
摘要: ubuntu:20+ containerd:1.7+ ubuntu部署k8s-20250205 ubuntu20.04部署k8s 1主机列表 172.31.143.61 172.31.138.200 172.31.131.66 172.31.133.139 2具体步骤 2.1设置hostname和h 阅读全文
posted @ 2025-04-02 18:42 A学无止境A 阅读(349) 评论(0) 推荐(0)
摘要: 定时将Prometheus监控数据取出写入到es import requests import json import schedule import time from elasticsearch import Elasticsearch from datetime import datetime 阅读全文
posted @ 2025-04-02 18:34 A学无止境A 阅读(29) 评论(0) 推荐(0)
摘要: #第一次git需要的操作 git config --global user.email "532733691@qq.com" git config --global user.name "wangchao" #保存git账号信息到本地 git config --global credential.h 阅读全文
posted @ 2025-04-02 18:33 A学无止境A 阅读(9) 评论(0) 推荐(0)
摘要: 如果配置webhook一直报错Invalid url given,实际是gitlab拦截了,需要管理员配置允许webhook同行 阅读全文
posted @ 2025-04-02 18:32 A学无止境A 阅读(95) 评论(0) 推荐(0)
摘要: 以gitlab仓库aaa代码库master分支为例 1.先保存本地分支代码到stash暂存区 git stash 2.查看暂存区的stash ID git stash list 3.同步远程仓库master分支最新代码到本地 git pull 4.将暂存区代码合并到本地master分支 git st 阅读全文
posted @ 2024-06-28 10:25 A学无止境A 阅读(381) 评论(0) 推荐(0)
摘要: #cat role.yaml apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRoleBinding metadata: name: kuboard-viewer-extended roleRef: apiGroup: rbac.autho 阅读全文
posted @ 2024-04-02 15:56 A学无止境A 阅读(75) 评论(0) 推荐(0)