main.yaml 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. ---
  2. - name: Install Nuage VRS
  3. sudo: true
  4. yum: name={{ vrs_rpm }} state=present
  5. - name: Set the uplink interface
  6. sudo: true
  7. lineinfile: dest={{ vrs_config }} regexp=^NETWORK_UPLINK_INTF line='NETWORK_UPLINK_INTF={{ uplink_interface }}'
  8. - name: Set the Active Controller
  9. sudo: true
  10. lineinfile: dest={{ vrs_config }} regexp=^ACTIVE_CONTROLLER line='ACTIVE_CONTROLLER={{ vsc_active_ip }}'
  11. - name: Set the Standby Controller
  12. sudo: true
  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. sudo: true
  17. yum: name={{ plugin_rpm }} state=present
  18. - name: Copy the certificates and keys
  19. sudo: true
  20. copy: src="/tmp/{{ item }}" dest="{{ vsp_k8s_dir }}/{{ item }}"
  21. with_items:
  22. - ca.crt
  23. - nuage.crt
  24. - nuage.key
  25. - nuage.kubeconfig
  26. - name: Set the vsp-k8s.yaml
  27. sudo: true
  28. template: src=vsp-k8s.j2 dest={{ vsp_k8s_yaml }} owner=root mode=0644
  29. notify:
  30. - restart vrs
  31. - restart node