上一页 1 ··· 26 27 28 29 30 31 32 33 34 ··· 44 下一页
摘要: Gitlab 官方文档以及参考资料 复制的官方GitLab 文档 参考资料 https://www.cnblogs.com/cjsblog/p/12256843.html https://www.cnblogs.com/schblog/tag/devOps%E6%B5%81%E7%A8%8B/ ht 阅读全文
posted @ 2022-02-27 20:49 michaelchengjl 阅读(515) 评论(0) 推荐(0)
摘要: devops-Gitlab-CI-CD 1. docker安装部署gitlab 2. GitLab Runner 3. GitLab Runner执行流程 runner-execution-flow 4. GitLab CI/CD Pipeline与jobs的概念 5. GitLab Runner 阅读全文
posted @ 2022-02-26 22:20 michaelchengjl 阅读(373) 评论(0) 推荐(0)
摘要: Python 如何将字符串转为字典 在工作中遇到一个小问题,需要将一个 python 的字符串转为字典,比如字符串: user_info = '{"name" : "json" , "gender": "male", "age": 28}' 我们想把它转为下面的字典: user_info = {"n 阅读全文
posted @ 2022-02-15 20:05 michaelchengjl 阅读(672) 评论(0) 推荐(1)
摘要: 一 、docker环境下的Grafana安装 1. 安装grafana 查看可用image [root@DL ~]# docker search grafana NAME DESCRIPTION STARS OFFICIAL AUTOMATED grafana/grafana The officia 阅读全文
posted @ 2022-01-21 16:07 michaelchengjl 阅读(1373) 评论(0) 推荐(0)
摘要: pytest 内置和自定义marker 可以通过命令行查看所有marker,包括内置和自定义的 pytest --markers 内置marker包括usefixtures 、filterwarnings 、skip 、skipif 、xfail这5个。参数化的marker在pytest参数化中有介 阅读全文
posted @ 2021-12-24 17:30 michaelchengjl 阅读(482) 评论(0) 推荐(0)
摘要: python-ldap 简单试用 1. 安装python-ldap3 pip3 install ldap3 2. 调用 from ldap3 import Server, Connection, SAFE_SYNC server = Server('172.16.XXX.XXX') conn = C 阅读全文
posted @ 2021-12-24 15:21 michaelchengjl 阅读(396) 评论(0) 推荐(0)
摘要: pip包依赖关系可视化 https://blog.csdn.net/zzy979481894/article/details/112385122 阅读全文
posted @ 2021-12-16 20:45 michaelchengjl 阅读(125) 评论(0) 推荐(0)
摘要: intel AMD 平台架构 https://www.mydrivers.com/zhuanti/tianti/cpu/ https://blog.csdn.net/qq_27825451/article/details/89225571 https://jishuin.proginn.com/p/ 阅读全文
posted @ 2021-12-12 18:14 michaelchengjl 阅读(123) 评论(0) 推荐(0)
摘要: shell 将文件名读入数组 我想得到一个文件列表,然后将结果读入一个数组,其中每个数组元素对应一个文件名。 shopt -s nullglob array=(*) array2=(file*) array3=(dir/*) 如果没有匹配项,则nullglob选项会使数组为空。 以下将在当前目录中创 阅读全文
posted @ 2021-12-10 18:38 michaelchengjl 阅读(1727) 评论(0) 推荐(0)
摘要: pytest-命令行传入自定义的参数到测试文件中 conftest.py import pytest def pytest_addoption(parser): parser.addoption("--aa", action="store", default='', help="the input 阅读全文
posted @ 2021-12-10 15:21 michaelchengjl 阅读(481) 评论(0) 推荐(0)
上一页 1 ··· 26 27 28 29 30 31 32 33 34 ··· 44 下一页