main.yaml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. ---
  2. - name: setup firewall
  3. import_tasks: firewall.yml
  4. - name: Set the Nuage certificate directory fact for Atomic hosts
  5. set_fact:
  6. cert_output_dir: /var/usr/share/nuage-openshift-monitor
  7. when: openshift_is_atomic | bool
  8. - name: Set the Nuage kubeconfig file path fact for Atomic hosts
  9. set_fact:
  10. kube_config: /var/usr/share/nuage-openshift-monitor/nuage.kubeconfig
  11. when: openshift_is_atomic | bool
  12. - name: Set the Nuage monitor yaml location fact for Atomic hosts
  13. set_fact:
  14. kubemon_yaml: /var/usr/share/nuage-openshift-monitor/nuage-openshift-monitor.yaml
  15. when: openshift_is_atomic | bool
  16. - name: Set the Nuage monitor certs location fact for Atomic hosts
  17. set_fact:
  18. nuage_master_crt_dir: /var/usr/share/nuage-openshift-monitor/
  19. when: openshift_is_atomic | bool
  20. - name: Set the Nuage master config directory for daemon sets install
  21. set_fact:
  22. nuage_master_config_dsets_mount_dir: /var/usr/share/
  23. when: master_host_type == "is_atomic"
  24. - name: Set the Nuage node config directory for daemon sets install
  25. set_fact:
  26. nuage_node_config_dsets_mount_dir: /var/usr/share/
  27. when: slave_host_type == "is_atomic"
  28. - name: Set the Nuage CNI plugin binary directory for daemon sets install
  29. set_fact:
  30. nuage_cni_bin_dsets_mount_dir: /var/opt/cni/bin
  31. when: openshift_is_atomic | bool
  32. - name: Create directory /usr/share/nuage-openshift-monitor
  33. become: yes
  34. file: path=/usr/share/nuage-openshift-monitor state=directory
  35. when: not openshift_is_atomic | bool
  36. - name: Create directory /var/usr/share/nuage-openshift-monitor
  37. become: yes
  38. file: path=/var/usr/share/nuage-openshift-monitor state=directory
  39. when: openshift_is_atomic | bool
  40. - name: Create directory /var/usr/bin for monitor binary on atomic
  41. become: yes
  42. file: path=/var/usr/bin state=directory
  43. when: openshift_is_atomic | bool
  44. - name: Create CNI bin directory /var/opt/cni/bin
  45. become: yes
  46. file: path=/var/opt/cni/bin state=directory
  47. when: openshift_is_atomic | bool
  48. - name: Create the log directory
  49. become: yes
  50. file: path={{ nuage_mon_rest_server_logdir }} state=directory
  51. - include_tasks: serviceaccount.yml
  52. - name: Download the certs and keys
  53. become: yes
  54. fetch: src={{ cert_output_dir }}/{{ item }} dest=/tmp/{{ item }} flat=yes
  55. with_items:
  56. - ca.crt
  57. - nuage.crt
  58. - nuage.key
  59. - nuage.kubeconfig
  60. - name: Copy the certificates and keys
  61. become: yes
  62. copy: src="/tmp/{{ item }}" dest="{{ cert_output_dir }}/{{ item }}"
  63. with_items:
  64. - ca.crt
  65. - nuage.crt
  66. - nuage.key
  67. - nuage.kubeconfig
  68. - include_tasks: certificates.yml
  69. - name: Install Nuage VSD user certificate
  70. become: yes
  71. copy: src="{{ vsd_user_cert_file }}" dest="{{ cert_output_dir }}/{{ vsd_user_cert_file | basename }}"
  72. - name: Install Nuage VSD user key
  73. become: yes
  74. copy: src="{{ vsd_user_key_file }}" dest="{{ cert_output_dir }}/{{ vsd_user_key_file | basename }}"
  75. - name: Create Nuage master daemon set yaml file
  76. become: yes
  77. template: src=nuage-master-config-daemonset.j2 dest=/etc/nuage-master-config-daemonset.yaml owner=root mode=0644
  78. - name: Create Nuage node daemon set yaml file
  79. become: yes
  80. template: src=nuage-node-config-daemonset.j2 dest=/etc/nuage-node-config-daemonset.yaml owner=root mode=0644
  81. - name: Add the service account to the privileged scc to have root permissions
  82. shell: oc adm policy add-scc-to-user privileged system:serviceaccount:openshift-infra:daemonset-controller
  83. ignore_errors: true
  84. when: inventory_hostname == groups.oo_first_master.0
  85. - name: Spawn Nuage Master monitor daemon sets pod
  86. shell: oc create -f /etc/nuage-master-config-daemonset.yaml
  87. ignore_errors: true
  88. when: inventory_hostname == groups.oo_first_master.0
  89. - name: Spawn Nuage CNI daemon sets pod
  90. shell: oc create -f /etc/nuage-node-config-daemonset.yaml
  91. ignore_errors: true
  92. when: inventory_hostname == groups.oo_first_master.0
  93. - name: Restart daemons
  94. command: /bin/true
  95. notify:
  96. - restart master api
  97. - restart master controllers
  98. ignore_errors: true