123456789101112131415161718192021222324252627 |
- ---
- - name: Set the Nuage plugin openshift directory fact to handle Atomic host install
- set_fact:
- nuage_node_plugin_dir: /var/usr/share/vsp-openshift
- when: openshift_is_atomic | bool
- - name: Set the Nuage CNI network config directory fact to handle Atomic host install
- set_fact:
- nuage_node_cni_netconf_dir: /var/etc/cni/net.d/
- when: openshift_is_atomic | bool
- - name: Set the Nuage CNI binary directory fact to handle Atomic host install
- set_fact:
- nuage_node_cni_bin_dir: /var/opt/cni/bin/
- when: openshift_is_atomic | bool
- - name: Assure CNI plugin config dir exists before daemon set install
- become: yes
- file: path="{{ nuage_node_plugin_dir }}" state=directory
- - name: Assure CNI netconf directory exists before daemon set install
- become: yes
- file: path="{{ nuage_node_cni_netconf_dir }}" state=directory
- - name: Assure CNI plugin binary directory exists before daemon set install
- become: yes
- file: path="{{ nuage_node_cni_bin_dir }}" state=directory
|