https://ansible-tran.readthedocs.io/en/latest/docs/playbooks_intro.html Ansible中文网址
什么是Ansible Playbook
功能列表
与Adhoc关系
支持的特性
hosts行的内容是一个或多个组或主机patterns
remote_user就是帐号名:
---
- hosts: test
remote_user: root
tasks:
- name: hello world
shell: ls /root
Playbook基本结构
变量定义:
变量位置
Inventory
Playbook
每一个 task 必须有一个名称 name,这样在运行 playbook 时,从其输出的任务执行信息中可以很好的辨别出是属于哪一ra个 task 的. 如果没有定义 name,‘action’ 的值将会用作输出信息中标记特定的 task.
---
- hosts: test
remote_user: root
vars:
com: ls /root
tasks:
- name: hello world
shell: "{{ com }}"
YAML语法要求如果值以{{ foo }}开头的话我们需要将整行用双引号包起来.这是为了确认你不是想声明一个YAML字典
系统变量
Ansible常用模块
常用参数配置:
when语句
tasks:
- name: "shutdown Debian flavored systems"
command: /sbin/shutdown -t now
when: ansible_os_family == "Debian"
bool值
vars:
epic: true
tasks:
- shell: echo "This certainly is epic"
when: epic
- shell: echo "This certainly is epic"
when: not epic
with_items循环语句
- name: add several users
user: name={{ item }} state=present groups=wheel
with_items:
- testuser1
- testuser2
with_nested 嵌套循环
- name: users access control
mysql_user: name={{ item[0] }}
priv={{ item[1] }}.*:All
append_privs=yes
password=foo
with_nested:
- ['alice','bob']
- ['clientdb','employeedb','providerdb']
有条件的循环
tasks:
- command: echo {{item}}
with_items: [0,2,4,6,8,10]
when: item > 5
Playbook实战
需求分析
python Flask开发环境
具备数据库和缓存的功能
出现报错,报错信息写的很明白,版本问题在网上也没有找到答案,只能根据不同版本先这么写,后面再看看资料补充
[DEPRECATION WARNING]: Invoking "yum" only once while using a loop via squash_actions is deprecated. Instead of using a
loop to supply multiple items and specifying `name: "{{ item }}"`, please use `name: ['python-devel', 'python-setuptools']`
and remove the loop. This feature will be removed in version 2.11. Deprecation warnings can be disabled by setting
deprecation_warnings=False in ansible.cfg.
ansible-playbook --version
ansible-playbook 2.8.4
---
- hosts: test
remote_user: root
become: true
tasks:
- name: install python for centos
yum:
name: ['python-devel','python-setuptools']
state: installed
when: ansible_distribution == 'CentOS'
- name: install python for ubuntu
apt:
name: ['libpython-dev','python-setuptools']
state: lastest
update_cache: yes
when: ansible_distribution == 'Ubuntu'
- name: install pip
shell: easy_install pip
- name: pip install flask and redis
pip:
name: ['flask','redis']
zabbix安装需求
zabbix server 安装
Master和Client,Centos和Ubuntu各一个
Zabbix进程启动正常
手机扫一扫
移动阅读更方便
你可能感兴趣的文章