main.yml 1014 B

123456789101112131415161718192021222324252627
  1. ---
  2. - name: Set the Nuage plugin openshift directory fact to handle Atomic host install
  3. set_fact:
  4. nuage_node_plugin_dir: /var/usr/share/vsp-openshift
  5. when: openshift.common.is_atomic | bool
  6. - name: Set the Nuage CNI network config directory fact to handle Atomic host install
  7. set_fact:
  8. nuage_node_cni_netconf_dir: /var/etc/cni/net.d/
  9. when: openshift.common.is_atomic | bool
  10. - name: Set the Nuage CNI binary directory fact to handle Atomic host install
  11. set_fact:
  12. nuage_node_cni_bin_dir: /var/opt/cni/bin/
  13. when: openshift.common.is_atomic | bool
  14. - name: Assure CNI plugin config dir exists before daemon set install
  15. become: yes
  16. file: path="{{ nuage_node_plugin_dir }}" state=directory
  17. - name: Assure CNI netconf directory exists before daemon set install
  18. become: yes
  19. file: path="{{ nuage_node_cni_netconf_dir }}" state=directory
  20. - name: Assure CNI plugin binary directory exists before daemon set install
  21. become: yes
  22. file: path="{{ nuage_node_cni_bin_dir }}" state=directory