2024年5月31日

go 学习

摘要: https://golang.dbwu.tech/ 阅读全文

posted @ 2024-05-31 16:37 running-fly 阅读(1) 评论(0) 推荐(0) 编辑

2024年5月27日

golang linux 环境断点调试

摘要: https://blog.csdn.net/weixin_49015143/article/details/134912008 https://xie.infoq.cn/article/f76d9c8010730523f29e22664 dlv 命令参考 https://www.cnblogs.co 阅读全文

posted @ 2024-05-27 16:08 running-fly 阅读(3) 评论(0) 推荐(0) 编辑

2024年4月25日

自定义error 类型

摘要: package main import ( "errors" "fmt" ) type errorCreateVolume struct { s string } func NewErrorCreateVolume(text string) error { return errorCreateVol 阅读全文

posted @ 2024-04-25 14:18 running-fly 阅读(2) 评论(0) 推荐(0) 编辑

2024年4月8日

prometheus

摘要: https://www.prometheus.wang/ 阅读全文

posted @ 2024-04-08 17:54 running-fly 阅读(2) 评论(0) 推荐(0) 编辑

2024年3月29日

golang 读取文件内容,清空文件内容,把读取的内容写入到文件里

摘要: package main import ( "encoding/json" "fmt" "io" "log" "os" ) type PvRelationList struct { Item []PvRelationInfo `json:"item"` } type PvRelationInfo s 阅读全文

posted @ 2024-03-29 15:31 running-fly 阅读(37) 评论(0) 推荐(0) 编辑

2023年12月22日

csi 学习文档

摘要: /yangyuliufeng/p/14360558.html https://kubernetes-csi.github.io/docs/introduction.html https://github.com/container-storage-int 阅读全文

posted @ 2023-12-22 17:53 running-fly 阅读(4) 评论(0) 推荐(0) 编辑

kubelet 日志查看

摘要: journalctl -xefu kubelet查看kubelet日志 阅读全文

posted @ 2023-12-22 17:51 running-fly 阅读(9) 评论(0) 推荐(0) 编辑

2023年11月14日

k8s 学习

摘要: https://blog.csdn.net/qq_42956653/category_11657432.html https://blog.csdn.net/weixin_41947378/article/details/111509849 阅读全文

posted @ 2023-11-14 23:03 running-fly 阅读(5) 评论(0) 推荐(0) 编辑

git 多个commit 合并为一个commit

摘要: https://zhuanlan.zhihu.com/p/577799326 阅读全文

posted @ 2023-11-14 15:54 running-fly 阅读(6) 评论(0) 推荐(0) 编辑

2023年11月9日

reflect 学习

摘要: https://blog.csdn.net/hdxx2022/article/details/132357273 阅读全文

posted @ 2023-11-09 10:35 running-fly 阅读(5) 评论(0) 推荐(0) 编辑