Ansible-playbook 小记

olei 3,426 views 7

就是将很多的 ad-hoc,以 yaml 格式的形式集合到了一起

hello world

Source Code
  1. ---
  2. - hosts: test
  3. remote_user: root
  4. vars:
  5. com: /root
  6. tasks:
  7. - name: hello world
  8. shell: ls {{ com }}
复制 文本 高亮
  • vars 自定义变量,引用的时候需要使用"{{}}",注意都使用双引号吧,避免报错
  • tasks 是用来指定需要执行的任务

系统变量

Source Code
  1. {{ ansible_devices.sda.model }}
复制 文本 高亮

条件语句

  • when 语句
Source Code
  1. tasks:
  2. - name: "shutdown Debian flavored systems"
  3. command: /sbin/shutdown -t now
  4. when: ansible_os_family == "Debian"
复制 文本 高亮
  • bool
Source Code
  1. vars:
  2. epic: true
  3. tasks:
  4. - shell: echo "This certainly is epic"
  5. when: peic
  6. - shell: echo "This certainly is epic"
  7. when: not peic
复制 文本 高亮
  • with_items 循环语句
Source Code
  1. - name: add_several users
  2. user: name={{ item }} state=present groups=wheel
  3. with_items:
  4. - testuser1
  5. - testuser2
复制 文本 高亮
  • with_nested 嵌套循环
Source Code
  1. - name: users access control
  2. mysql_user: name={{ item[0] }}
  3. priv={{ item[2] }}.*.:ALL
  4. append_privs=yes
  5. password=foo
  6. with_nested:
  7. - ['alice','bob']
  8. - ['clientdb','employeedb','providerdb']
复制 文本 高亮
  • 有条件的循环
Source Code
  1. tasts:
  2. - command: echo {{ item }}
  3. with_items: [0,2,4,6,8,10]
  4. when: item > 5
复制 文本 高亮

实战

编写一个安装 Python flask 环境的 yml

Source Code
  1. ---
  2. - hosts: test
  3. remote_user: root
  4. become: true
  5. tasks:
  6. - name: install python for ubuntu
  7. apt:
  8. name: "{{ item }}"
  9. state: latest
  10. update_cache: yes
  11. with_items:
  12. - python-dev
  13. - python-setuptools
  14. when: ansible_distribution == 'Ubuntu'
  15. - name: install python for centos
  16. yum:
  17. name: "{{ item }}"
  18. state: installed
  19. with_items:
  20. - python-devel
  21. - python-setuptools
  22. when: ansible_distribution == 'CentOS'
  23. - name: install pip
  24. shell: easy_install pip
  25. - name: pip install flask and redis
  26. pip:
  27. name: "{{ item }}"
  28. with_items:
  29. - flask
  30. - redis
复制 文本 高亮

ansible_distribution 系统变量用来检测机器是哪种操作系统

playbook 编写 zabbix

  • zabbixserver 端,以及 agent
  • 两台机器,一台 centos,一台 ubuntu
  • hosts 文件编写
Source Code
  1. centos ansible_ssh_port=22 ansible_ssh_host=xx.xx.xx.1 ansible_ssh_user=root
  2. ubuntu ansible_ssh_port=22 ansible_ssh_host=xx.xx.xx.2 ansible_ssh_user=simon
  3.  
  4. [test]
  5. centos
  6. ubuntu
复制 文本 高亮
  • yml 文件编写
Source Code
  1. ---
  2. - hosts: test
  3. remote_user: root
  4. become: true
  5. tasks:
  6. - name: install zabbix rpm source
  7. yum:
  8. name: https://repo.zabbix.com/zabbix/4.0/rhel/7/x86_64/zabbix-release-4.0-1.el7.noarch.rpm
  9. state: installed
  10. when: ansible_distribution == 'CentOS'
  11. - name: download zabbix deb for ubuntu
  12. get_url:
  13. url: https://repo.zabbix.com/zabbix/4.0/ubuntu/pool/main/z/zabbix-release/zabbix-release_4.0-2+xenial_all.deb
  14. dest: /tmp/zabbix.deb
  15. when: ansible_distribution == 'Ubuntu'
  16. - name: install zabbix deb for ubuntu
  17. apt:
  18. # name: /tmp/zabbix.deb
  19. deb: /tmp/zabbix.deb
  20. # state: installed
  21. - name: install zabbix server -> centos
  22. yum:
  23. name: "{{ item }}"
  24. state: installed
  25. with_items:
  26. - zabbix-server-mysql
  27. - zabbix-proxy-mysql
  28. - zabbix-web-mysql
  29. when: ansible_distribution == 'CentOS'
  30. - name: install zabbix agent -> ubuntu
  31. apt:
  32. name: zabbix-agent
  33. update_cache: yes
  34. # state: installed
  35. when: ansible_distribution == 'Ubuntu'
  36. - name: config zabbix server
  37. replace:
  38. path: /etc/zabbix/zabbix_server.conf
  39. regexp: DBUser=zabbix
  40. replace: DBUser=root
  41. when: ansible_distribution == 'CentOS'
  42. - name: import db format for server
  43. shell: zcat /usr/share/doc/zabbix-server-mysql-4.0/create.sql.gz | mysql -uroot -p zabbix
  44. when: ansible_distribution == 'CentOS'
  45. - name: disable selinux
  46. selinux:
  47. state: disabled
  48. when: ansible_distribution == 'CentOS'
  49. - name: start zabbix server
  50. systemd:
  51. name: zabbix-server
  52. state: started
  53. when: ansible_distribution == 'CentOS'
  54. - name: start zabbix agent
  55. systemd:
  56. name: zabbix-agent
  57. state: started
  58. when: ansible_distribution == 'Ubuntu'
复制 文本 高亮

apt 模块,本地的 deb 文件,参数是 debstate 参数没有 installed 状态的。name 参数指定不到一个 url,需要 get_urldeb 下载下来,dest 指定目录,来安装

后记

若是很多的 tasks 写在一个 yaml 文件里面,太臃肿,不好维护,怎么解决呢?那么下次说说它的 roles~~peace yo~

发表评论 取消回复
表情 图片 链接 代码

  1. 演员
    演员 Lv 1

    来看看

  2. 沉萧先生
    沉萧先生 Lv 2

    好久没更新了

    • olei
      olei 站长

      @沉萧先生嗯,有点忙,这阵子准备辞职,忙复习 忙面试 更新先放下了..

      • 沉萧先生
        沉萧先生 Lv 2

        @olei 祝你成功。加油

  3. olei
    olei 站长

    本人链接信息中存在色情分享信息,不好意思,这个不给通过。。。

  4. 廖先生
    廖先生 Lv 1

    萌新看不懂,但还是要评论

  5. 你的灵兽看起来很好吃
    你的灵兽看起来很好吃 Lv 1

    虽然不知道说的是什么,但看起来好厉害的样子!

分享