Ansible循环变量

时间:2014-10-28 10:35:45

标签: ansible ansible-playbook

我正在使用ansible来更新新添加的NIC的配置文件 因为我已经在单独的yml文件中定义了一些变量

/tmp/ip.yml

#first interface
interface1: eth1
bootproto1: static
ipaddress1: 192.168.211.249
netmask1: 255.255.255.0
gateway: 192.168.211.2
DNS1: 192.168.211.2

#second interface
interface2: eth2
bootproto2: static
ipaddress2: 10.0.0.100
netmask2: 255.0.0.0

剧本

- include_vars: /tmp/ip.yml

- name: configuring interface 
  lineinfile:
    state=present
    create=yes
    dest=/etc/sysconfig/network-scripts/ifcfg-{{interface1}}
    regexp="{{ item.regexp }}"
    line="{{ item.line }}"
  with_items:
     - { regexp: '^BOOTPROTO=.*', line: 'BOOTPROTO={{interface1}}' }
     - { regexp: '^IPADDR=.*', line: 'IPADDR={{ipaddress1}' }
     - { regexp: '^NETMASK=.*', line: 'NETMASK={{netmask1}}' }
     - { regexp: '^GATEWAY=.*', line: 'GATEWAY={{gateway}}' }
     - { regexp: '^PEERDNS=.*', line: 'PEERDNS=no' }
     - { regexp: '^DNS1=.*', line: 'DNS1={{DNS1}}' }
     - { regexp: '^ONBOOT=.*', line: 'ONBOOT={{onboot}}' }
when: bootproto1 == 'static'

- name: configuring for DHCP
  lineinfile:
   state=present
   create=yes
   dest=/etc/sysconfig/network-scripts/ifcfg-{{interface1}}
   regexp="{{ item.regexp }}"
   line="{{ item.line }}"
  with_items:
    - { regexp: '^BOOTPROTO=.*',line: 'BOOTPROTO={{bootproto1}}' }
    - {regexp: '^PEERDNS=.*',line: 'PEERDNS=yes' }
    - { regexp: '^ONBOOT=.*', line: 'ONBOOT={{onboot}}' }
when: bootproto1 == 'dhcp'

同样重复第二个界面。

即使这种方法适用于2个网卡,但这很难管理,即每增加一个新的网卡,我需要修改剧本并更新 /tmp/ip.yml 中的相应变量。

有没有办法将变量添加到/tmp/ip.yml,并且可能正在使用某个分隔符将其解析为playbook,而不是每次都插入新的NIC来修改playbook。

1 个答案:

答案 0 :(得分:25)

这里有很多话要说。 首先,尽量避免瘟疫lineinfile。它实际上是最后的解决方案。 lineinfile使得编写一致和幂等的剧本变得困难。

现在,由于您正在尝试填充RH样式的界面文件,因此很容易实现。

整理变量

要做的第一件事就是为变量建立一个合适的结构。你需要遍历你的接口,所以你必须使东西“loopable”。如您所述,interface1interface2 ... interfaceN不具备可扩展性。

这是一个建议:

interfaces_ipv4:
  - name: eth0
    bootproto: static
    ipaddress: 192.168.211.249
    netmask: 255.255.255.0
    gateway: 192.168.211.2
    dns: 192.168.211.2
  - name: eth2
    bootproto: static
    ipaddress: 10.0.0.100
    netmask: 255.0.0.0

编写模板

现在您拥有了数据,您需要一个模板来创建您的操作系统配置文件。

BOOTPROTO={{item.bootproto}}
IPADDR={{item.ipaddress}}
NETMASK={{item.netmask}}
{% if item.gateway is defined %}
GATEWAY={{item.gateway}}
{% endif %}
PEERDNS=no
DNS1={{item.dns}}
ONBOOT={{item.onboot|default('no')}}

我包含两个变体:您可以在未设置({% if ... %}构造)或提供默认值(例如{{item.onboot|default('no')}})时跳过输出行。

您的里程可能会有所不同,具体取决于您是否要使用默认值或跳过if结构。

创建任务

最后,这是一个为每个接口创建接口配置文件的任务:

- name: Push template
  template: 
    src=/path/to/the/above/template.j2
    dest=/etc/sysconfig/network-scripts/ifcfg-{{item.name}}.cfg
  with_items:
    - "{{ interfaces_ipv4 }}"

这应该做到这一切。

当然,使用此任务的最佳方法是将其添加到某个“网络”角色,并从剧本中调用它。

祝你好运。