main.yaml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. ---
  2. - name: Install Nuage VRS
  3. become: yes
  4. yum: name={{ vrs_rpm }} state=present
  5. - name: Set the uplink interface
  6. become: yes
  7. lineinfile: dest={{ vrs_config }} regexp=^NETWORK_UPLINK_INTF line='NETWORK_UPLINK_INTF={{ uplink_interface }}'
  8. - name: Set the Active Controller
  9. become: yes
  10. lineinfile: dest={{ vrs_config }} regexp=^ACTIVE_CONTROLLER line='ACTIVE_CONTROLLER={{ vsc_active_ip }}'
  11. - name: Set the Standby Controller
  12. become: yes
  13. lineinfile: dest={{ vrs_config }} regexp=^STANDBY_CONTROLLER line='STANDBY_CONTROLLER={{ vsc_standby_ip }}'
  14. when: vsc_standby_ip is defined
  15. - name: Install plugin rpm
  16. become: yes
  17. yum: name={{ plugin_rpm }} state=present
  18. - name: Assure CNI conf dir exists
  19. become: yes
  20. file: path="{{ cni_conf_dir }}" state=directory
  21. - name: Assures Openshift CNI bin dir exists
  22. become: yes
  23. file: path="{{ cni_bin_dir }}" state=directory
  24. - name: Install CNI loopback plugin
  25. become: yes
  26. copy:
  27. src: "{{ k8s_cni_loopback_plugin }}"
  28. dest: "{{ cni_bin_dir }}/{{ k8s_cni_loopback_plugin | basename }}"
  29. mode: 0755
  30. - name: Copy the certificates and keys
  31. become: yes
  32. copy: src="/tmp/{{ item }}" dest="{{ vsp_openshift_dir }}/{{ item }}"
  33. with_items:
  34. - ca.crt
  35. - nuage.crt
  36. - nuage.key
  37. - nuage.kubeconfig
  38. - include: certificates.yml
  39. - name: Set the vsp-openshift.yaml
  40. become: yes
  41. template: src=vsp-openshift.j2 dest={{ vsp_openshift_yaml }} owner=root mode=0644
  42. notify:
  43. - restart vrs
  44. - restart node
  45. - include: iptables.yml
  46. - name: setup firewall
  47. include: firewall.yml
  48. static: yes