main.yaml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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: Copy the certificates and keys
  19. become: yes
  20. copy: src="/tmp/{{ item }}" dest="{{ vsp_openshift_dir }}/{{ item }}"
  21. with_items:
  22. - ca.crt
  23. - nuage.crt
  24. - nuage.key
  25. - nuage.kubeconfig
  26. - include: certificates.yml
  27. - name: Set the vsp-openshift.yaml
  28. become: yes
  29. template: src=vsp-openshift.j2 dest={{ vsp_openshift_yaml }} owner=root mode=0644
  30. notify:
  31. - restart vrs
  32. - restart node
  33. - include: iptables.yml