上一页 1 2 3 4 5 6 ··· 25 下一页
摘要: 1.helm 官方文档 https://helm.sh/zh/docs/intro/using_helm/ 2.你可以通过运行 helm search hub 命令找到公开可用的charts: helm search hub milvus 3.可以通过 helm repo add 来添加一个新的 R 阅读全文
posted @ 2022-07-21 14:22 随心朝阳 阅读(298) 评论(0) 推荐(1) 编辑
摘要: 1.由于内核自动升级,导致服务异常 cat /boot/grub/grub.cfg | grep menu 2.修改为老内核 sed -i 's#GRUB_DEFAULT=0#GRUB_DEFAULT="Advanced options for Ubuntu>Ubuntu, with Linux 5 阅读全文
posted @ 2022-07-14 10:45 随心朝阳 阅读(551) 评论(0) 推荐(0) 编辑
摘要: 经过排查重启服务器,docker 路由丢了手动加一下就正常了 1.查看docker 路由是否存在 iptables -t nat -S|grep docker 2.添加路由 iptables -t nat -A POSTROUTING -s 172.17.0.0/16 ! -o docker0 -j 阅读全文
posted @ 2022-07-14 10:21 随心朝阳 阅读(127) 评论(0) 推荐(0) 编辑
摘要: package main import ( "flag" "fmt" "net/http" "strings" ) func sendMsg(apiUrl, msg string) { // json contentType := "application/json" // data sendDat 阅读全文
posted @ 2022-05-30 14:31 随心朝阳 阅读(662) 评论(0) 推荐(0) 编辑
摘要: package main import ( "io" "log" "net/http" ) const form = `<html><body><form action="#" method="post" name="bar"> <input type="text" name="in"/> <inp 阅读全文
posted @ 2022-05-26 17:18 随心朝阳 阅读(28) 评论(0) 推荐(0) 编辑
摘要: package main import ( "fmt" "net" "net/http" "time" ) var url = []string{ "http://www.baidu.com", "http://google.com", "http://taobao.com", } func mai 阅读全文
posted @ 2022-05-26 16:51 随心朝阳 阅读(59) 评论(0) 推荐(0) 编辑
摘要: 备注: "number_of_shards": 3, 切片数量 "refresh_interval": "1s", 刷新间隔 "number_of_replicas": 1 副本数量 创建索引 PUT /test_prod { "mappings": { "properties": { "id": 阅读全文
posted @ 2022-04-28 17:30 随心朝阳 阅读(1056) 评论(0) 推荐(0) 编辑
摘要: 1.添加参数化构建根据自己情况更改 流水线脚本 def label = "jnlp-slave" def harbor_addr = "xxxx.com/xxxxx_cicd" //根据自己情况更改 def aliyunhub_auth = "5e29c51a-xxxxx" //根据自己情况更改 / 阅读全文
posted @ 2022-04-28 09:32 随心朝阳 阅读(155) 评论(0) 推荐(0) 编辑
摘要: apiVersion: v1 kind: ConfigMap metadata: name: filebeat-dom-config namespace: ksc-cicd data: # 配置文件保存在ConfigMap filebeat.yml: |- filebeat.inputs: - ty 阅读全文
posted @ 2022-04-28 09:26 随心朝阳 阅读(461) 评论(0) 推荐(0) 编辑
摘要: 1.参考连接 Docker部署 - 兰玉磊的个人博客 按照文档修改相应配置文件即可 备注1.:settings.yml 用授权吗,不能用明文密码 备注2:邮件报错: "msg":"x509: certificate signed by unknown authority"} Linux下发送邮件x5 阅读全文
posted @ 2022-04-27 17:54 随心朝阳 阅读(630) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 25 下一页