blob: 44827057619b81a0a3b5bb6ecfd656a93cd6e525 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
- name: install needed network manager libs
yum: name='{{ item }}' state=installed
with_items:
- NetworkManager-glib
- nm-connection-editor
- libsemanage-python
- policycoreutils-python
# Works in 2.4.3.0 with couple of upstream patches
# Infiniband is not supported yet
#- name: configure storage network interface
# nmcli: type=inifinband conn_name=storage ifname="{{ ands_storage_interface }}" ip4="{{ ands_storage_cidr }}" state="present" autoconnect="yes"
- name: configure storage nework
include_tasks: nm_configure_connection.yml
vars:
name: "storage"
iface: "{{ ands_storage_interface }}"
cidr: "{{ ands_storage_cidr }}"
force: true
- name: configure openshift nework
include_tasks: nm_configure_connection.yml
vars:
name: "openshift"
iface: "{{ ands_inner_interface }}"
cidr: "{{ ands_openshift_cidr }}"
force: true
- name: configure public nework
include_tasks: nm_configure_connection.yml
vars:
name: "storage"
iface: "{{ ands_public_interface }}"
cidr: "{{ ands_openshift_public_cidr }}"
alias: true
|