摘要: prometheus 下载prometheus-2.53.2 prometheus.yml文件修改 global: scrape_interval: 15s evaluation_interval: 15s alerting: alertmanagers: - static_configs: - t 阅读全文
posted @ 2024-10-19 14:22 BUG弄潮儿 阅读(36) 评论(0) 推荐(0)
摘要: docker-compose 下载 curl -L https://github.com/docker/compose/releases/download/v2.29.7/docker-compose-linux-x86_64 > /usr/local/bin/docker-compose 增加权限 阅读全文
posted @ 2024-10-19 14:22 BUG弄潮儿 阅读(141) 评论(0) 推荐(0)
摘要: 安装ArgoCD 参考:https://argo-cd.readthedocs.io/en/stable/getting_started/ 创建命名空间 kubectl create namespace argocd 下载install.yml curl -L https://raw.githubu 阅读全文
posted @ 2024-10-19 14:21 BUG弄潮儿 阅读(88) 评论(0) 推荐(0)
摘要: 下载kube-prometheus wget https://github.com/prometheus-operator/kube-prometheus/archive/refs/tags/v0.14.0.tar.gz 安装 tar -zxvf v0.14.0.tar.gz cd v0.14.0 阅读全文
posted @ 2024-10-19 14:19 BUG弄潮儿 阅读(202) 评论(0) 推荐(0)
摘要: 创建命名空间 nexus3-namespace.yaml apiVersion: v1 kind: Namespace metadata: name: nexus-ns 创建pv&pvc nexus3-pv-pvc.yaml apiVersion: v1 kind: PersistentVolume 阅读全文
posted @ 2024-10-19 14:18 BUG弄潮儿 阅读(87) 评论(0) 推荐(0)
摘要: sonarqube https://blog.csdn.net/li81562/article/details/139255900 https://www.jindouyun.cn/document/industry/details/184076 apiVersion: v1 kind: Names 阅读全文
posted @ 2024-10-19 14:17 BUG弄潮儿 阅读(101) 评论(0) 推荐(0)
摘要: 创建serviceaccount serviceaccount.yaml apiVersion: v1 kind: ServiceAccount metadata: name: myadmin namespace: default 创建集群角色ClusterRole clusterrole.yaml 阅读全文
posted @ 2024-10-19 14:17 BUG弄潮儿 阅读(49) 评论(0) 推荐(0)
摘要: 创建权限绑定 sa-role.yaml apiVersion: v1 kind: ServiceAccount metadata: name: my-admin #账号名 namespace: kube-system apiVersion: rbac.authorization.k8s.io/v1 阅读全文
posted @ 2024-10-19 14:17 BUG弄潮儿 阅读(195) 评论(0) 推荐(0)