上一页 1 ··· 4 5 6 7 8 9 10 11 下一页
摘要: 简单整理一下思路。 先用 selenium 定位image 的xpath,一般图片的标签都是 img,具体的话可以直接 打开对应的浏览器 F12 找一下 然后 用 get_attribute 方法 获取 标签内 属性的值。需要具体看一下img 对应的url是哪个属性。 获取到url 之后,使用 re 阅读全文
posted @ 2021-08-19 14:47 小清澈 阅读(136) 评论(0) 推荐(0) 编辑
摘要: http://maven.apache.org/download.cgi 下载 Binary tar.gz archive 上传Linux tar -zxvf apache-maven-3.8.2-bin.tar.gz vi /etc/profile export PATH=$PATH:/root/ 阅读全文
posted @ 2021-08-18 16:19 小清澈 阅读(157) 评论(0) 推荐(0) 编辑
摘要: 重新安装了docker之后,发现启动容器ping不通 外网以及公司内部的虚拟机。 重新装一下docker的网卡之后顺利解决 #停止dockersystemctl stop docker#docker0ip link set dev docker0 down#删除docker0网桥brctl delb 阅读全文
posted @ 2021-08-04 16:02 小清澈 阅读(5001) 评论(0) 推荐(0) 编辑
摘要: kubectl drain nodename --delete-local-data --force --ignore-daemonsets kubectl delete node nodename 阅读全文
posted @ 2021-07-27 16:57 小清澈 阅读(131) 评论(0) 推荐(0) 编辑
摘要: vi /usr/lib/systemd/system/docker.service [Unit]Description=Docker Application Container EngineDocumentation=https://docs.docker.comAfter=network-onli 阅读全文
posted @ 2021-07-21 18:54 小清澈 阅读(3014) 评论(0) 推荐(0) 编辑
摘要: 执行一下命令,然后kubectl get nodes 试一下 mkdir -p $HOME/.kube sudo cp -i /etc/kubernetes/admin.conf $HOME/.kube/config sudo chown $(id -u):$(id -g) $HOME/.kube/ 阅读全文
posted @ 2021-07-20 14:28 小清澈 阅读(870) 评论(0) 推荐(0) 编辑
摘要: master 上 的/etc/kubernetes/admin.conf 文件copy到当前节点 目录下,执行以下命令 echo "export KUBECONFIG=/etc/kubernetes/admin.conf" >> ~/.bash_profile source ~/.bash_prof 阅读全文
posted @ 2021-07-20 14:17 小清澈 阅读(219) 评论(0) 推荐(0) 编辑
摘要: wget https://k8s-1252147235.cos.ap-chengdu.myqcloud.com/dashboard/dashboard.yaml docker pull registry.cn-hangzhou.aliyuncs.com/google_containers/kuber 阅读全文
posted @ 2021-07-16 15:14 小清澈 阅读(212) 评论(0) 推荐(0) 编辑
摘要: 查看具体报错 journalctl -u kubelet failed to load Kubelet config file /var/lib/kubelet/config.yaml 上述报错,mkdir /var/lib/kubelet vi config.yaml address: 0.0.0 阅读全文
posted @ 2021-07-16 14:29 小清澈 阅读(5142) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/xiaochangwei/p/kubernetes-03.html Master安装 1.master节点上执行: yum -y install kubernetes flannel etcd 2.修改etcd配置为: [root@k8s-master 阅读全文
posted @ 2021-07-16 13:35 小清澈 阅读(145) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 下一页