ansible Templates

Files和templateshtml

  files和templates均用於ansible文件處理,二者的主要區別是:Files目錄下的文件無需寫絕對路徑便可將文件傳輸到遠程主機,templates目錄下文件以Jinja2渲染,支持傳送到主機文件的變量替換node

  template變量示例可看 https://www.cnblogs.com/FRESHMANS/p/8204721.html,template文件內的變量可在vars目錄裏直接定義mysql

 

Jinja2模板高度自定義

①、for循環web

語法:
{% for i in  all_items %}
{{ item }}
{% endfor%}


示例:循環10個數,打印出ip , web{{id-200}}.edu.cn
{% for id in range(201,211)  %}
10.10.10.{{ id }}  web{{ "%02d | format(id-200)" }}.edu.cn
{% endfor %}


執行效果:

10.10.10.201 web01.edu.cn
......
10.10.10.210 web10.edu.cn

 

②、if語句sql

語法:
{% if my_conditional %}
.....
{% endif %}


示例:配置mysql配置文件。若是有設置變量則按變量,若是沒有按默認 
tasks.yml ---
- name: mysql
  hosts: all
  vars: 
       PORT: 3301
  tasks: 
        - template: src=/templates/mycnf.j2 dest=/etc/my.cnf      #src這裏寫mycnf.j2的tempalte目錄


mycnf.j2

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

 

可用一句歸納oop

bind-address=0.0.0.0{{ PORT | default(3306)}}

 

 

③、多值合併spa

目錄結構:

ansible
├── join.yml
└── roles
    └── join
        └── templates
            └── list.j2


[root@bogon ansible]# cat join.yml 
---
- hosts: test
  gather_facts: no
  vars: 
    port: 1111
  tasks:
    - template: src=roles/join/templates/list.j2  dest=/root/list.txt
  roles:
    - { role: join} 
[root@bogon ansible]# cat roles
/join/templates/list.j2 {% for node in groups['test'] %} {{ node | join("-") }}:5673            #這裏意思爲將hosts文件裏 test組下的ip,加上端口5673,合併,join表示不在ip中間加任何東西 {% if not loop.last %} {% endif %} {% endfor %} 執行結果: [root@node1 ~]# cat list.txt 10.10.10.12:5673 10.10.10.162:5673
相關文章
相關標籤/搜索