Merge "Use a templated network conf"

This commit is contained in:
Jenkins 2016-08-26 13:35:14 +00:00 committed by Gerrit Code Review
commit fa97bad06b
2 changed files with 37 additions and 26 deletions

View File

@ -0,0 +1,24 @@
## Sample network configuration file. This file would go into the repo itself.
## Adjust the file as necessary and put the required network interfaces.
## Remember the "bridges" setting in your localhost hostvars would need to match the interfaces defined here.
## You would reference the file by adding "network_conf_filename: my_network_file.cfg.j2"
auto br-mgmt
iface br-mgmt inet static
bridge_stp off
bridge_waitport 0
bridge_fd 0
bridge_ports none
address 10.100.101.1
netmask 255.255.255.0
offload-sg off
auto br-storage
iface br-storage inet static
bridge_stp off
bridge_waitport 0
bridge_fd 0
bridge_ports none
address 10.100.102.1
netmask 255.255.255.0
offload-sg off

View File

@ -58,11 +58,9 @@
- name: Copy network configuration
template:
src: test-nova-interfaces.cfg.j2
dest: /etc/network/interfaces.d/nova_interfaces.cfg
register: nova_interfaces
tags:
- networking-interfaces-file
src: "{{ network_conf_filename }}"
dest: /etc/network/interfaces.d/test_interfaces.cfg
register: network_interfaces
- name: Ensure our interfaces.d configuration files are loaded automatically
lineinfile:
@ -73,31 +71,14 @@
- name: Shut down the network interfaces
command: "ifdown {{ item }}"
when: nova_interfaces | changed
with_items:
- br-mgmt
- br-vlan
- br-vxlan
tags:
- networking-interfaces-stop
when: network_interfaces | changed
with_items: bridges
- name: Start the network interfaces
command: "ifup {{ item }}"
when: nova_interfaces | changed
with_items:
- br-mgmt
- br-vlan
- br-vxlan
tags:
- networking-interfaces-start
- name: Create bridges
shell: /sbin/brctl addbr {{ item.name }} || true
when: network_interfaces | changed
with_items: bridges
when: bridges is defined
- name: IP bridges
command: /sbin/ifconfig {{ item.name }} {{ item.ip_addr }} netmask 255.255.255.0
with_items: bridges
when: bridges is defined
- name: Add iptables rule to ensure ssh checksum is correct
command: /sbin/iptables -A POSTROUTING -t mangle -p tcp --dport 22 -j CHECKSUM --checksum-fill
- name: Add iptables rules for lxc natting
@ -112,5 +93,11 @@
delay: 2
with_items:
- lxc-python2
- name: Add iptables rules for lxc natting
command: /usr/local/bin/lxc-system-manage iptables-create
roles:
- role: "lxc_hosts"
vars_files:
- test-vars.yml