博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Ansible@一个高效的配置管理工具--Ansible configure management--翻译(八)
阅读量:5023 次
发布时间:2019-06-12

本文共 5291 字,大约阅读时间需要 17 分钟。

如无书面授权,请勿转载

第四章,大型项目中Ansible的使用

RolesIf your playbooks start expanding beyond what includes can help you solve, or youstart gathering a large number of templates, you may want to use roles. Roles inAnsible allow you to group files together in a defined format. They are essentiallyan extension to includes that handles a few things automatically, and this helps youorganize them inside your repository.Roles allows you to place your variables, files, tasks, templates, and handlers in afolder, and then easily include them. You can also include other roles from withinroles, which effectively creates a tree of dependencies. Similar to task includes, theycan have variables passed to them. Using these features, you should be able to buildself-contained roles that are easy to share with others.Roles are commonly set up to be services provided by machines, but they can also bedaemons, options, or simply characteristics. Things you may want to configure in arole are as follows:•     Webservers, such as Nginx or Apache•     Messages of the day customized for the security level of the machine•     Database servers running PostgreSQL or MySQLTo manage roles in Ansible perform the following steps:1.     Create a folder named roles with your playbooks.2.     In the roles folder, make a folder for each role that you would like.3.     In the folder for each role, make folders named files , handlers , meta ,tasks , templates , and finally vars . If you aren't going to use all these,you can leave the ones you don't need off. Ansible will silently ignore anymissing files or directories when using roles.4.     In your playbooks, add the keyword roles followed by a list of roles that youwould like to apply to the hosts.5.     For example, if you had the common , apache , website1 , and website2 roles,your directory structure would look similar to the following example. Thesite.yml file is for reconfiguring the entire site, and the webservers1.ymland webservers2.yml files are for configuring each web server farm.

角色

假设你的playbook增长到包括也无法解决,或者你已经拥有一个数量巨大的模板,你也许就该使用角色了。它同意你依据定义的格式对文件进行分组,从本质上来将,它是一个具有一些自己主动化功能的包括,角色能够帮你非常好的组织你的资料库。

角色同意你将变量、文件、任务、模板、Handlers放到一个目录中,然后包括他们。在建立好一个有效的依赖关系之后,你还能够在一个角色中包括另外一个角色。和包括一样,你能够传递变量给角色。利用这些特性,你能够创建一个自包括的角色并不是常easy跟其它人分享它。

Roles are commonly set up to be services provided by machines, but they can also be daemons, options, or simply characteristics(临时不知道怎么翻译)

以下这些能够配置成一个角色:

  • web服务,比方nginx或者apache
  • Messages of the day customized for the security level of the machine
  • PostgreSQL or MySQL

创建角色的步骤

  1. 创建一个叫roles的目录
  2. 在roles目录中,为每一个你希望定义的角色创建一个目录
  3. 在创建的角色目录中,再创建files , handlers , meta ,tasks , templates ,   vars这些目录,假设你临时不用的能够先不创建,Ansible会自己主动忽略他们。
  4. 在playbook中,加入�roleskeyword,它的值是你希望这个角色应用的主机列表。
  5. 比方,假设你有common , apache , website1 ,  website2这几个角色,那你的目录应该像以下的样例这样。site,yml是用来配置整个网站,webservers1,yml和webservers2.yml各自是用来配置各自的服务器。

The following file is what could be in website1.yml . It shows a playbook thatapplies the common , apache , and website1 roles to the website1 group in theinventory. The website1 role is included using a more verbose format thatallows us to pass variables to the role:---- name: Setup servers for website1.example.comhosts: website1roles:- common- apache- { role: website1, port: 80 }For the role named common , Ansible will then try to load roles/common/tasks/main.yml as a task include, roles/common/handlers/main.yml as a handlerinclude, and roles/common/vars/main.yml as a variable file include. If all of thesefiles are missing, Ansible will throw an error; however, if one of the files exists thenthe others, if missing, will be ignored. The following directories are used by a defaultinstall of Ansible. Other directories may be used by different modules:
以下的文件是website1.yml,它展示了一个playbook怎样应用common.apache,website1这些角色到设备清单中website1这个组。website1这个角色包括了很多其它、更具体的格式,能够让我们传递的參数到角色中去。

---

- name: Setup servers for website1.example.com
hosts: website1
roles:
- common
- apache
- { role: website1, port: 80 }

当处理common这个角色时,Ansible会载入main.yml作为任务包括,载入roles/common/handlers/main.yml这个文件作为handlers包括,载入roles/common/vars/main.yml作为变量包括;只是,当有些文件存在,有些文件不存在时,不存在的文件将被忽略。以下是Ansible的默认的安装文件夹,另一些其它模块经常使用的文件夹:

When using roles, the behavior of the copy, the template, and the script modules isslightly altered. Instead of searching for files by looking from the directory in whichthe playbook file is located, Ansible will look for the files in the location of the role.For example, if you are using a role named common , these modules will change to thefollowing behavior:•	 The copy module will look for files in roles/common/files .•	 The template module will look for templates in roles/common/templates .•	 The script module will look for files in roles/common/files .•	 Other modules may decide to look for their data in other folders insideroles/common/ . The documentation for modules can be retrieved usingansible-doc , as was discussed in the Module help section of Chapter 1, GettingStarted with Ansible.
当使用角色的时候,copy、template还有其它一些模块,他们的行为方式将发生改变。原本这些模块会在playbook文件所在的文件夹查找文件,如今他们会在角色所在的文件夹查找文件。比方:你在使用一个common的角色:

  • copy模块会在roles/common/files .查找文件
  • template莫开会在roles/common/templates查找文件
  • 其它脚本模块会在roles/common/files .查找文件
  • 另外一些模块可能会在roles/common/查找文件,模块的帮助命令是ansible-doc

转载于:https://www.cnblogs.com/hrhguanli/p/4021867.html

你可能感兴趣的文章
python+selenium商城UI自动化
查看>>
使用参数和接收表单数据
查看>>
Android学习小记
查看>>
UML类图解析
查看>>
七牛 js 上传 解决没有文件名
查看>>
【iOS】设备系统版本
查看>>
java中的IO操作总结(三)
查看>>
onCreate中的savedInstanceState有何具体作用
查看>>
Caffe : Layer Catalogue(1)
查看>>
硬件(MAC)地址的概念及作用
查看>>
mybatis使用序列批量插入数据
查看>>
Java线程-- 线程池
查看>>
适时放手,是对自己的尊重
查看>>
badboy录制兼容性有趣测试
查看>>
sqlite字段类型
查看>>
Verilog之VGA
查看>>
java反射
查看>>
C++ 引用
查看>>
lab -- 美国大学实验室
查看>>
tiled工具使用
查看>>