summaryrefslogtreecommitdiffstats
path: root/xci/playbooks/roles/configure-network/tasks/main.yml
diff options
context:
space:
mode:
authorTapio Tallgren <tapio.tallgren@nokia.com>2017-12-01 13:53:29 +0200
committerTapio Tallgren <tapio.tallgren@nokia.com>2018-01-15 13:04:13 +0200
commit8a3017299b8b78e16c91f8e0c091aee244137d46 (patch)
tree01f74f0398addfb7df1889d017d080ad0ca1f784 /xci/playbooks/roles/configure-network/tasks/main.yml
parent494a97fc79b73bc019c07baa29e5a1b662e55bcf (diff)
Create CentOS networking configuration
Change-Id: If8c0de44c313fdc22b1c7443b12d42769035c5b0 Signed-off-by: Tapio Tallgren <tapio.tallgren@nokia.com>
Diffstat (limited to 'xci/playbooks/roles/configure-network/tasks/main.yml')
-rw-r--r--xci/playbooks/roles/configure-network/tasks/main.yml29
1 files changed, 29 insertions, 0 deletions
diff --git a/xci/playbooks/roles/configure-network/tasks/main.yml b/xci/playbooks/roles/configure-network/tasks/main.yml
index 9a08cfb7..65abaa40 100644
--- a/xci/playbooks/roles/configure-network/tasks/main.yml
+++ b/xci/playbooks/roles/configure-network/tasks/main.yml
@@ -72,3 +72,32 @@
- name: restart network service
shell: "/usr/sbin/wicked ifreload all"
when: ansible_os_family | lower == "suse"
+
+- block:
+ - name: Configure networking on CentOS for interfaces
+ template:
+ src: "{{ ansible_os_family | lower }}/interface.ifcfg.j2"
+ dest: "/etc/sysconfig/network-scripts/ifcfg-{{ item.name }}"
+ with_items:
+ - { name: "{{ interface }}" , bridge: "br-vlan" }
+ - { name: "{{ interface }}.10", bridge: "br-mgmt" , vlan_id: 10 }
+ - { name: "{{ interface }}.20", bridge: "br-storage", vlan_id: 20 }
+ - { name: "{{ interface }}.30", bridge: "br-vxlan" , vlan_id: 30 }
+ - name: Configure networking on CentOS for bridges
+ template:
+ src: "{{ ansible_os_family | lower }}/bridge.ifcfg.j2"
+ dest: "/etc/sysconfig/network-scripts/ifcfg-{{ item.name }}"
+ with_items:
+ - { name: "br-vlan" , ip: "{{ host_info[inventory_hostname].VLAN_IP }}", prefix: 24 }
+ - { name: "br-mgmt" , ip: "{{ host_info[inventory_hostname].MGMT_IP }}", prefix: 22 }
+ - { name: "br-storage", ip: "{{ host_info[inventory_hostname].STORAGE_IP }}", prefix: 22 }
+ - { name: "br-vxlan" , ip: "{{ host_info[inventory_hostname].VXLAN_IP }}", prefix: 22 }
+ - name: Add default route through br-vlan
+ lineinfile:
+ path: "/etc/sysconfig/network-scripts/ifcfg-br-vlan"
+ line: "GATEWAY=192.168.122.1"
+ - name: Restart networking
+ command: "systemctl restart network"
+ - name: wait for the server to come back
+ wait_for_connection:
+ when: ansible_os_family | lower == "redhat"