ansible之判斷語句jinja2模板的使用 與roles角色的配置使用

ansible之判斷語句的用法

 

判斷語句:
實踐案例1: 根據不一樣操做系統,安裝相同的軟件包
Centos: httpd
Ubuntu: httpd2php

[root@centos7 project1]# cat when.yml 
- hosts: webservers
  tasks:

    - name: Install httpd Server
      yum: name=httpd state=present
      when: ansible_distribution == "CentOS"

    - name: Install httpd server
      apt: name=httpd2 state=present
      when: ansible_distribution == "Ubuntu"

 

2. 全部web主機名的添加到阿里雲倉庫, 其他的都跳過添加: 能夠用and 和or 作屢次條件判斷mysql

# is match 是作匹配的意思nginx

[root@centos7 project1]# cat when2.yml 
---
- hosts: all
  tasks:

    - name: Add Nginx Repos
      yum_repository:
        name: nginx_tet
        description: EPEL YUM repo
        baseurl: http://mirrors.cloud.aliyuncs.com/epel/7/$basearch
        gpgcheck: no
      when: (ansible_hostname is match "web*") or (ansible_hostname is match "lb*")

 


3. 循環語句:
實踐案例一: 使用循環啓動多個服務
#注意: {{ item }} 是變量的意思
with_items: 是上面變量裏面的內容! 這裏的意思就是啓動httpd 和mariadb2個服務,若是還要啓動samba就是 - sambaweb

[root@centos7 project1]# cat when3.yml 
- hosts: webservers
  tasks:
    - name: Start httpd
      systemd: name={{ item }} state=started
      with_items:
        - httpd
        - mariadb

實踐二:批量安裝軟件包的方法: 這裏也可使用上面用到的{{ item }} 這個變量來實現ajax

[root@centos7 project1]# cat 5.yml 
- hosts: webservers
  tasks:
    - name: ensure a list of packages installed
      yum: name= "{{ packages }}" state=present
      vars:
        packages:
          - httpd
          - httpd-tools

 

4.
實踐案例三: 使用字典循環方式建立用戶和批量拷貝文件 (重要!!!)
#注意!!! name={{ item.name }} 不能有空格,否則就沒法成功
#注意, 批量的時候item.name 就等於下面的循環列表中的name redis

[root@centos7 project1]# cat 6.yml 
- hosts: webservers
  tasks:
    - name: Add Users
      user: name={{ item.name }} groups={{ item.groups }} state=present
      with_items:
        - { name: 'testuser1', groups: 'bin' }
        - { name: 'testuser2', groups: 'root' }


[root@centos7 project1]# cat with4.yml 
- hosts: webservers
  tasks:
    - name: Copy Rsync configure and Rsync passwd
      copy: src={{ item.src }} dest={{ item.dest }} mode={{ item.mode }}
      with_items:
        - { src: "./rsyncd.conf", dest: "/etc/rsyncd.conf", mode: "0644" }
        - { src: "./rsync.passwd", dest: "/tmp/etc/rsync.passwd", mode: "0600" }

 

5.handlers注意事項
#不管多少個task通知了相同的handlers handlers僅會在全部tasks結束後運行一次
# 只有task發生改變了纔會通知handlers 沒有改變則不會出發handlers
# 不能使用handlers替代taskssql

[root@centos7 project1]# cat han.yml 
- hosts: webservers
  vars:
    - http_port:8083
  tasks:

    - name: Install Http Server
      yum: name=httpd state=present

    - name: Configure httpd server
      template: src=./httpd.conf.j2 dest=/etc/httpd/conf/httpd.conf
      notify:
        - Restart Httpd Server
        - Restart PHP Server

    - name: start httpd server
      service: name=httpd state=started enabled=yes

  handlers:
    - name: Restart Httpd Server
      systemd: name=httpd start=restarted

    - name: Restart PHP Server
      systemd: name=php-fpm start=restarted
handlers的使用

 

6. tags標籤(用於調試的場景下)centos

[root@centos7 project1]# cat tag.yml 
- hosts: webservers
  vars:
    - http_port:8083
  tasks:

    - name: Install Http Server
      yum: name=httpd state=present
      tags:
        - install_httpd
    - httpd_server

    - name: Configure httpd server
      template: src=./httpd.conf.j2 dest=/etc/httpd/conf/httpd.conf
      notify:
        - Restart Httpd Server
        - Restart PHP Server
      tags:
        - confiure_httpd
    - httpd_server

    - name: start httpd server
      service: name=httpd state=started enabled=
      tags: service_httpd

  handlers:
    - name: Restart Httpd Server
      systemd: name=httpd start=restarted

    - name: Restart PHP Server
      systemd: name=php-fpm start=restarted


[root@centos7 project1]# ansible-playbook tag.yml --list-tags
#查看tag.yml內有幾個標籤
[root@centos7 project1]# ansible-playbook tag.yml -t httpd_server
#運行一個標籤內的任務
[root@centos7 project1]# ansible-playbook tag.yml -t httpd_server,service_httpd
#運行多個標籤內的任務,注意用逗號隔開就好了
tags標籤的使用

 

7. include的用法,就是吧每一個yml寫成單獨的一個功能,方便調用和規範化
include_taskside

[root@centos7 project1]# cat task.yml
- hosts: webservers
  vars:
    - http_port: 8081

  tasks:
    - include_tasks: task_install.yml
    - include_tasks: task_start.yml

[root@centos7 project1]# cat task_install.yml
- name: Install http server
  yum: name=httpd state=present


[root@centos7 project1]# cat task_start.ym
- name: start httpd servers
  service: name=httpd state=started enabled=yes

 

 


 

ansible 之jinja2模板的使用

jinja2的模板能夠用變量和for的循環語句, 他的語法和ajax的語法同樣memcached

1. 案例: 使用變量 + for循環的方式實現功能

[root@gukai project1]# cat jinja_nginx.yml 
- hosts: webservers
  vars: 
    - http_port: 80
    - server_name: www.oldboy.com

  tasks:
    - name: copy nginx configure
      template: src=./oldboy.conf.j2 dest=/etc/nginx/conf.d/oldboyedu_proxy.conf



[root@gukai project1]# cat oldboy.conf.j2 
upstream {{ server_name }} {
{% for i in range(1,10) %}
  server 172.16.1.{{i}}:{{http_port}};
{% endfor %}

server {
    listen {{ http_port }};
    server_name {{ server_name }};
    location / {
        proxy_pass http://{{ server_name }};
        proxy_set_header Host $http_host;
    }
}

[root@gukai project1]# ansible-playbook jinja_nginx.yml 
#最後執行任務推送過去
1. 案例: 使用變量 + for循環的方式實現功能

 

2.案例:############jinja2版本,經過if else 判斷語句生成不一樣的模板keeplive方法

[root@gukai project1]# cat kee.conf.j2 
global_defs {
    route_id {{ ansible_hostname }}
}

vrrp_instance VI_1 {
{% if ansible_hostname =="web01" %}
    state MASTER
    priority 150
{% elif ansible_hostname == "web02" %}
    state BACKUP
    priority 100
{% endif %}    

 

3. 案例:

###########使用ansible jinja IF 生成不一樣的mysql配置文件(自定義變量)
#注意,使用jinja模板 發送配置文件到目標主機上須要使用template 命令

[root@gukai project1]# cat jinja_mysql.yml 
- hosts: webservers
  gather_facts: no
  vars:
    PORT: 13306
    #PORT: false
  tasks:
    - name: Coyp mysql confiure
      template: src=./my.cnf.j2 dest=/tmp/my.cnf

[root@gukai project1]# cat my.cnf.j2 
# This is mysql co configure

{% if PORT %}
bind-address=0.0.0.0:{{ PORT }}
{% else %}
bind-address=0.0.0.0:3306
{% endif %}

[root@gukai project1]# ansible-playbook jinja_mysql.yml 


 

ansible 之role的使用方法

 

[root@gukai ~]# cd /etc/ansible/roles/

[root@gukai roles]# mkdir nfs/{tasks,handlers,templates} -pv
mkdir: 已建立目錄 "nfs"
mkdir: 已建立目錄 "nfs/tasks"
mkdir: 已建立目錄 "nfs/handlers"
mkdir: 已建立目錄 "nfs/templates"
#這個就是建立角色
[root@gukai roles]# cat site.yml        #對那個目錄下的功能起做用
- hosts: webservers
  roles:
    - nfs
[root@gukai tasks]# cat config.yml        #配置服務
- name: configure nfs-utils server
  template: src=./exports.j2 dest=/etc/exports owner=root group=root mode=0644
  notify: Restart NFS Server


[root@gukai tasks]# cat install.yml    #安裝服務
- name: Install NFS-utils Server
  yum: name=nfs-utils state=present


[root@gukai tasks]# cat start.yml        #啓動服務
- name: Start NFS server
  systemd: name=nfs state=started enabled=yes
[root@gukai tasks]# cat main.yml                #main.yml是主函數的意思下面包含了各個功能的
- include_tasks: install.yml
#- include_tasks: config.yml
- include_tasks: start.yml

#include_tasks 是包含使用那些yml文件,目的是吧每一個功能都單獨區分開來

[root@gukai tasks]# ansible-playbook site.yml    #運行playbook

 

 

#######################安裝memcache

[root@gukai roles]# mkdir memcached/{tasks,handlers,templates} -pv
mkdir: 已建立目錄 "memcached"
mkdir: 已建立目錄 "memcached/tasks"
mkdir: 已建立目錄 "memcached/handlers"
mkdir: 已建立目錄 "memcached/templates"
[root@gukai roles]# tree memcached/        #目錄結構
memcached/
├── handlers
│   └── main.yml
├── tasks
│   ├── config.yml
│   ├── install.yml
│   ├── main.yml
│   └── start.yml
└── templates
    └── redis.j2
[root@gukai roles]# cat memcached/handlers/main.yml 
- name: restart redis server
  systemd: name=redis state=restarted
[root@gukai roles]# cat memcached/tasks/config.yml 
- name: copy redis server configure
  template: src=redis.j2 dest=/tmp/redis.conf
  notify: restart redis server
 

 [root@gukai roles]# cat memcached/tasks/start.yml
- name: start redis server
  systemd: name=redis state=started enabled=yes


[root@gukai roles]# cat memcached/tasks/install.yml
- name: Install memcached server
  yum: name=redis state=present

#############以上是功能的模塊


[root@gukai roles]# cat memcached/tasks/main.yml 
- include_tasks: install.yml
- include_tasks: config.yml
- include_tasks: start.yml
#主函數,包含以上功能代碼
tasks
[root@gukai roles]# cat memcached/templates/redis.j2 
PORT="12333"
USER="redis"
CACHESIZE="{{ ansible_memtotal_mb //2 }}"
#套用jinja2的模板語法和變量的語法實現特定的信息


[root@gukai roles]# cat site.yml 
- hosts: webservers
  roles:
    - nfs
- hosts: webservers
  roles:
    - memcached

#加載進去memcached模塊


[root@gukai roles]#ansible-playbook site.yml

 

 

 

##############將功能整合到一塊兒的寫法

 

[root@gukai roles]# tree rsync/
rsync/
├── handlers
│   └── main.yml
├── tasks
│   └── main.yml
└── templates
    ├── rsyncd.conf.j2
    └── rsyncd.password.j2
[root@gukai roles]# cat rsync/handlers/main.yml 
- name: restart rsync server
  systemd: name=rsyncd state=restarted


[root@gukai roles]# cat rsync/tasks/main.yml 
- name: install rsync server
  yum: name=rsync state=present

- name: configure rsync server
  template: src={{ item.src }} dest={{ item.dest }} mode={{ item.mode }}
  with_items:
    - { src: 'rsyncd.conf.j2', dest: '/tmp/rsync.conf', mode: '0644' }
    - { src: 'rsyncd.password.j2', dest: '/tmp/rsync.conf', mode: '777' }
  notify: restart rsync server

- name: systemd rsync server
  systemd: name=rsyncd state=started enabled=yes



[root@gukai roles]# cat rsync/templates/rsyncd.conf.j2 
uid=www
gid=www
port=873



[root@gukai roles]# cat site.yml 
#- hosts: webservers
#  roles:
#    - nfs
#- hosts: webservers
#  roles:
#    - memcached

- hosts: webservers
  roles:
    - rsync
相關文章
相關標籤/搜索