摘要: # ansible-role ## 一、为什么用role ``` 把单个的大剧本,拆分为小剧本,便于维护,修改、使用 完成解耦、结构更清晰、调试更方便 如果是小部署, 还是剧本更方便,大型项目,必须通过role管理 在实际的工作当中,一个完整的项目实际上是很多功能体的组合,如果将所有的功能写在一个p 阅读全文
posted @ 2023-08-15 21:18 村尚chun叔 阅读(32) 评论(0) 推荐(0) 编辑
摘要: > # ansible剧本 > > ## 简单剧本 > > ``` > > - name: 这是一个安装nginx的剧本 > hosts: web > tasks: > - name: 01 安装nginx > yum: > name: nginx > state: installed > - na 阅读全文
posted @ 2023-08-15 21:18 村尚chun叔 阅读(39) 评论(0) 推荐(0) 编辑
摘要: # ansible常用模块 ``` ansible提供了多少个模块给你用 ansible-doc -l |wc -l ``` ## ping模块 https://docs.ansible.com/ansible/latest/collections/ansible/builtin/ping_modu 阅读全文
posted @ 2023-08-15 21:16 村尚chun叔 阅读(35) 评论(0) 推荐(0) 编辑
摘要: # ansible安装部署 > ## 1、ansible安装 > > ``` > 管理机上安装ansible,被管理节点必须打开ssh服务 > > yum install epel-release > yum install -y ansible > ansible --version > > 在管 阅读全文
posted @ 2023-08-15 21:15 村尚chun叔 阅读(185) 评论(0) 推荐(0) 编辑