上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 44 下一页
摘要: ##ansible register ansible register 这个功能非常有用。当我们需要判断对执行了某个操作或者某个命令后,如何做相应的响应处理(执行其他 ansible 语句),则一般会用到register 。 ###实例1 我们需要判断sda6是否存在,如果存在了就执行一些相应的脚本 阅读全文
posted @ 2022-09-28 14:38 liwenchao1995 阅读(57) 评论(0) 推荐(0) 编辑
摘要: ##ansible template ###template介绍 Jinja是基于Python的模板引擎。template类是Jinja的另一个重要组件,可以看作一个编译过的模块文件,用来生产目标文本,传递Python的变量给模板去替换模板中的标记。 他与ansible的copy模块功能相似,都是拷 阅读全文
posted @ 2022-09-28 14:04 liwenchao1995 阅读(99) 评论(0) 推荐(0) 编辑
摘要: ##linux iptables iptables 是 Linux 的防火墙管理工具而已,真正实现防火墙功能的是 Netfilter,我们配置了 iptables 规则后 Netfilter 通过这些规则来进行防火墙过滤等操作 ###Netfilter 模块 它是主要的工作模块,位于内核中,在网络层 阅读全文
posted @ 2022-09-28 11:09 liwenchao1995 阅读(218) 评论(0) 推荐(0) 编辑
摘要: ##shell continue ###条件判断 #!/bin/bash for (( i=0;i<=10;i++ )) do if (( i>0 && i<7 ));then continue else echo "Number is $i" fi done 结果: Number is 0 Num 阅读全文
posted @ 2022-09-27 11:15 liwenchao1995 阅读(35) 评论(0) 推荐(0) 编辑
摘要: ##git 查看代码是谁提交的 有很多种方法,比如登陆gitlab查看,或者在本地查看等 ###用idea查看 当我们拉取代码后,本地代码或者脚本无法定位是谁写的。需要找到责任人时,可以在idea上查看 在代码行数部分右键,选择annotate 可以看到是谁提交的代码和提交时间 阅读全文
posted @ 2022-09-27 10:30 liwenchao1995 阅读(1891) 评论(0) 推荐(1) 编辑
摘要: ##groovy 脚本实例 创建ConfigMap ###创建ConfigMap package platform.branch_feature. node('ecs_wuhan_docker') { println "${BUILD_URL}console" def xxlJob = ENVIRO 阅读全文
posted @ 2022-09-26 20:56 liwenchao1995 阅读(53) 评论(0) 推荐(0) 编辑
摘要: ##groovy 脚本实例 创建环境 ###创建环境 package platform.branch_feature.mysql_docker_db node('ecs_wuhan_docker') { println "${BUILD_URL}console" def xxlJob = ENVIR 阅读全文
posted @ 2022-09-26 20:54 liwenchao1995 阅读(116) 评论(0) 推荐(0) 编辑
摘要: ##groovy 脚本实例 从git上创建feature分支 ###从git上创建feature分支 //从git上创建feature分支 package common node('ecs_wuhan_docker') { /** 参数部分: * 这部分是自己定义的参数,根据生产线不通,需要根据情况 阅读全文
posted @ 2022-09-26 20:52 liwenchao1995 阅读(230) 评论(0) 推荐(0) 编辑
摘要: ##groovy 脚本实例 调整k8s的副本数定时任务 ###调整k8s的副本数定时任务 package platform node('ecs_wuhan_docker') { println "${BUILD_URL}console" def wxKey = 'xxxxxx' def propos 阅读全文
posted @ 2022-09-26 20:48 liwenchao1995 阅读(198) 评论(0) 推荐(0) 编辑
摘要: ##nginx 跨域问题 跨域问题有两种解决方法, 让开发自己修改代码解决跨域问题 修改nginx配置解决跨域问题 这里是记录了nginx的解决方式 后端服务调用报错跨域问题,为解决跨域问题,在网上搜索一大坨跨域解决方案,可以先都粘过去,后面慢慢删挑选正确的跨域问题 proxy_set_header 阅读全文
posted @ 2022-09-26 20:40 liwenchao1995 阅读(56) 评论(0) 推荐(0) 编辑
上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 44 下一页