certificates.yml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. ---
  2. - name: Create a directory to hold the certificates
  3. file: path="{{ nuage_plugin_rest_client_crt_dir }}" state=directory
  4. delegate_to: "{{ nuage_ca_master }}"
  5. - name: Create the key
  6. command: >
  7. openssl genrsa -out "{{ nuage_ca_master_plugin_key }}" 4096
  8. delegate_to: "{{ nuage_ca_master }}"
  9. - name: Create the req file
  10. command: >
  11. openssl req -key "{{ nuage_ca_master_plugin_key }}" -new -out "{{ nuage_plugin_rest_client_crt_dir }}/restClient.req" -subj "/CN=nuage-client"
  12. delegate_to: "{{ nuage_ca_master }}"
  13. - name: Generate the crt file
  14. command: >
  15. openssl x509 -req -in "{{ nuage_plugin_rest_client_crt_dir }}/restClient.req" -CA "{{ nuage_ca_crt }}" -CAkey "{{ nuage_ca_key }}" -CAserial "{{ nuage_ca_serial }}" -out "{{ nuage_ca_master_plugin_crt }}" -extensions clientauth -extfile "{{ nuage_ca_dir }}"/openssl.cnf -days {{ nuage_mon_cert_validity_period }}
  16. delegate_to: "{{ nuage_ca_master }}"
  17. - name: Remove the req file
  18. file: path="{{ nuage_plugin_rest_client_crt_dir }}/restClient.req" state=absent
  19. delegate_to: "{{ nuage_ca_master }}"
  20. - name: Copy nuage CA crt
  21. shell: cp "{{ nuage_ca_crt }}" "{{ nuage_plugin_rest_client_crt_dir }}"
  22. delegate_to: "{{ nuage_ca_master }}"
  23. - name: Archive the certificate dir
  24. shell: "cd {{ nuage_plugin_rest_client_crt_dir }} && tar -czvf /tmp/{{ ansible_nodename }}.tgz *"
  25. delegate_to: "{{ nuage_ca_master }}"
  26. - name: Create a temp directory for the certificates
  27. local_action: command mktemp -d "/tmp/openshift-{{ ansible_nodename }}-XXXXXXX"
  28. register: mktemp
  29. - name: Download the certificates
  30. fetch: src="/tmp/{{ ansible_nodename }}.tgz" dest="{{ mktemp.stdout }}/{{ ansible_nodename }}.tgz" flat=yes
  31. delegate_to: "{{ nuage_ca_master }}"
  32. - name: Extract the certificates
  33. unarchive: src="{{ mktemp.stdout }}/{{ ansible_nodename }}.tgz" dest={{ nuage_plugin_crt_dir }}
  34. - name: Delete the certificates after copy
  35. file: path="{{ nuage_plugin_rest_client_crt_dir }}" state=absent
  36. delegate_to: "{{ nuage_ca_master }}"
  37. - name: Delete the temp directory
  38. file: path="{{ mktemp.stdout }}" state=absent
  39. delegate_to: "{{ nuage_ca_master }}"