from selenium import webdriver from selenium.webdriver.chrome.options import Options def get_image(url, pic_name): # chromedriver的路径 chromedriver = r"C:\Users\xx\Downloads\chromedriv...
Linux
使用Velero管理kubernetes的备份和恢复到阿里OSS
使用Velero管理kubernetes的备份和恢复到阿里OSS [项目地址](https://github.com/vmware-tanzu/velero) Velero(以前称为Heptio Ark)为您提供了备份和还原Kubernetes群集资源和持久卷的工具。您可以在公...
mongodb 备份恢复
导出库 mongodump -h 192.168.3.26 --port 8635 -u user -p 'xxxx' --authenticationDatabase admin -d timedtask -o mongodb-arch-backup2020/ mongodump备份还原数据库 mongorestore -h 192.1...
Cnetos7升级内核
#cat /etc/redhat-release #uname -a 导入public key #rpm --import https://www.elrepo.org/RPM-GPG-KEY-elrepo.org 安装ELRepo到CentOS 可以去http://elrepo.org/tiki/tiki-index.php选择要安装的ELRepo To i...
a client request body is buffered to a temporary file
nginx: client_max_body_size 15m; client_body_buffer_size 15m; ingress-nginx: "nginx.ingress.kubernetes.io/client-body-buffer-size": "15m", "nginx.ingress.kubernetes.io/proxy-body-size": "...
通过conntrack-tools排查连接到Redis最多的kubernetes pod客服端ip对应的服务
yum install conntrack-tools conntrack -L conntrack | grep "192.168.4.131"|awk '{print $5}' | cut -d "=" -f 2 | sort | uniq -c | sort -nr | head -n 10 kubectl get pod --all-namespaces...
docker容器替换镜像源
Debian sed -i s@/deb.debian.org/@/mirrors.aliyun.com/@g /etc/apt/sources.list Alpine sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories
GitLAb获取Tag发布信息非Release notes
jenkins pipeline构建发布之后发送发布信息到群通知机器人。提供git commit效果不是很好,最终通过Tag完成 获取TagMessage 非Release notes。如果获取Release notes可以通过API获取 git cat-file ...
hey压测工具安装
root@golan-hey-5f55dcc898-fl7bx:/go# go env -w GO111MODULE=on root@golan-hey-5f55dcc898-fl7bx:/go# go env -w GOPROXY=https://goproxy.cn,direct root@golan-hey-5f55dcc898-fl7bx:/go# go get -u githu...
docker build –build-arg 环境变量不生效的坑
A镜像使用了ARG,B镜像FROM A镜像的前提条件下: A: cat Dockerfile FROM busybox FROM busybox:v12 ARG APP_ENV ENV APP_ENVr=${APP_ENV} docker build -t busybox:v1 --build-arg APP_agr=sit1 ...