From 8a3017299b8b78e16c91f8e0c091aee244137d46 Mon Sep 17 00:00:00 2001 From: Tapio Tallgren Date: Fri, 1 Dec 2017 13:53:29 +0200 Subject: Create CentOS networking configuration Change-Id: If8c0de44c313fdc22b1c7443b12d42769035c5b0 Signed-off-by: Tapio Tallgren --- .../roles/configure-network/tasks/main.yml | 29 ++++++++++++++++++++++ .../templates/redhat/bridge.ifcfg.j2 | 9 +++++++ .../templates/redhat/interface.ifcfg.j2 | 10 ++++++++ 3 files changed, 48 insertions(+) create mode 100644 xci/playbooks/roles/configure-network/templates/redhat/bridge.ifcfg.j2 create mode 100644 xci/playbooks/roles/configure-network/templates/redhat/interface.ifcfg.j2 (limited to 'xci/playbooks/roles/configure-network') 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" diff --git a/xci/playbooks/roles/configure-network/templates/redhat/bridge.ifcfg.j2 b/xci/playbooks/roles/configure-network/templates/redhat/bridge.ifcfg.j2 new file mode 100644 index 00000000..06b5f177 --- /dev/null +++ b/xci/playbooks/roles/configure-network/templates/redhat/bridge.ifcfg.j2 @@ -0,0 +1,9 @@ +DEVICE={{ item.name }} +NM_CONTROLLED=no +IPADDR={{ item.ip }} +PREFIX={{ item.prefix }} +ONBOOT=yes +BOOTPROTO=none +TYPE=Bridge +DELAY=0 +STP=off diff --git a/xci/playbooks/roles/configure-network/templates/redhat/interface.ifcfg.j2 b/xci/playbooks/roles/configure-network/templates/redhat/interface.ifcfg.j2 new file mode 100644 index 00000000..b0dea0f5 --- /dev/null +++ b/xci/playbooks/roles/configure-network/templates/redhat/interface.ifcfg.j2 @@ -0,0 +1,10 @@ +DEVICE={{ item.name }} +NM_CONTROLLED=no +ONBOOT=yes +BOOTPROTO=none +{% if item.vlan_id is defined %} +VLAN=yes +ETHERDEVICE={{ interface }} +VLAN_ID={{ item.vlan_id }} +{% endif %} +BRIDGE={{ item.bridge }} -- cgit 1.2.3-korg