赞
踩
因为 k8s集群 版本是 1.20.11,所以需要安装 kube-prometheus:v0.8.0 特定版本。
如何查看版本适配呢?
https://github.com/prometheus-operator/kube-prometheus/tree/v0.8.0
1、获取kube-prometheus 上的release0.8 分支版本,执行如下步骤
mkdir prometheus_0.8 git init #初始化当前目录为git仓库,该目录下会生成.git文件,一般情况不修改这个文件 git remote add origin https://github.com/prometheus-operator/kube-prometheus #连接github git fetch #fetch 后可看见远程相关分支信息 (此时,git branch看不到任何本地分支信息,本地master分支虽然默认分支,但需第一次commit后才会真正存在) 在当前目录下随便建一个文件 touch temp.txt git add temp.txt # add 文件到暂存区 git commit -m "ingnore" # 提交到本地版本库 提示未提示身份信息: --------------------------------------------------------------- *** Please tell me who you are. *Run git config --global user.email "you@example.com" git config --global user.name "Your Name" to set your account's default identity. Omit --global to set the identity only in this repository. fatal: unable to auto-detect email address (got 'root@master.(none)')* ---------------------------------------------------------------- 解决办法:提供设置身份信息 git config --global user.email "test@example.com" git config --global user.name "test" git commit -m "ingnore" git branch -a #此时,可以看见本地和远程所有的分支信息
git branch dev #本地建立一个分支
git branch --set-upstream-to=origin/release-0.8 dev #将远程分支和本地分支关联
git checkout dev #切换到当前分支,可以通过git branch 查看前面带*的就是当前分支
git pull #可拉取远程分支上的代码到本地并由本地分支管理 ;若远程和本地分支没有做关联,pull需要指定远程和本地分支信息
git rm temp.txt #删除本地版本库中的test.txt文件,工作区的文件可手动删除
此方法未测试。
git clone -b release-0.8 https://github.com/prometheus-operator/kube-prometheus.git
此时,就可以按照相关文档安装 kube-prometheus:v0.8.0。
参考资料:
git 相关操作借鉴:https://www.csdn.net/tags/MtjaIg1sNTMyNjUtYmxvZwO0O0OO0O0O.html
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。