main.yaml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. ---
  2. - name: Set the Nuage plugin openshift directory fact for Atomic hosts
  3. set_fact:
  4. vsp_openshift_dir: /var/usr/share/vsp-openshift
  5. when: openshift_is_atomic | bool
  6. - name: Set the Nuage CNI binary directory fact for Atomic hosts
  7. set_fact:
  8. cni_bin_dir: /var/opt/cni/bin/
  9. when: openshift_is_atomic | bool
  10. - name: Set the Nuage plugin certs directory fact for Atomic hosts
  11. set_fact:
  12. nuage_plugin_crt_dir: /var/usr/share/vsp-openshift
  13. when: openshift_is_atomic | bool
  14. - name: Assure CNI conf dir exists
  15. become: yes
  16. file: path="{{ cni_conf_dir }}" state=directory
  17. - name: Assures Openshift CNI bin dir exists
  18. become: yes
  19. file: path="{{ cni_bin_dir }}" state=directory
  20. - name: Copy the certificates and keys
  21. become: yes
  22. copy: src="/tmp/{{ item }}" dest="{{ vsp_openshift_dir }}/{{ item }}"
  23. with_items:
  24. - ca.crt
  25. - nuage.crt
  26. - nuage.key
  27. - nuage.kubeconfig
  28. - include_tasks: certificates.yml
  29. - name: Add additional Docker mounts for Nuage for atomic hosts
  30. become: yes
  31. lineinfile: dest="{{ openshift_atomic_node_config_file }}" line="{{ nuage_atomic_docker_additional_mounts }}"
  32. when: openshift_is_atomic | bool
  33. - name: Restart node services
  34. command: /bin/true
  35. notify:
  36. - restart node
  37. ignore_errors: true
  38. - include_tasks: iptables.yml
  39. - name: setup firewall
  40. import_tasks: firewall.yml