- 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 bridged openshift nework
  include_tasks: nm_configure_connection.yml
  vars:
    bridge: "{{ ands_bridge }}"
    name: "openshift"
    iface: "{{ ands_inner_interface }}"
    cidr: "{{ ands_openshift_cidr }}"
    force: true
  when: ands_enable_cnr | default(false)

- name: configure openshift nework
  include_tasks: nm_configure_connection.yml
  vars:
    name: "openshift"
    iface: "{{ ands_inner_interface }}"
    cidr: "{{ ands_openshift_cidr }}"
    force: true
  when: not (ands_enable_cnr | default(false))
    

- name: configure public nework
  include_tasks: nm_configure_connection.yml
  vars:
    name: "storage"
    iface: "{{ ands_public_interface }}"
    cidr: "{{ ands_openshift_public_cidr }}"
    alias: true