main.yml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. ---
  2. - fail:
  3. msg: "openshift_ca_host variable must be defined for this role"
  4. when: openshift_ca_host is not defined
  5. - name: Install the base package for admin tooling
  6. action: "{{ ansible_pkg_mgr }} name={{ openshift.common.service_type }}{{ openshift_pkg_version | default('') | oo_image_tag_to_rpm_version(include_dash=True) }} state=present"
  7. when: not openshift.common.is_containerized | bool
  8. register: install_result
  9. delegate_to: "{{ openshift_ca_host }}"
  10. run_once: true
  11. - name: Reload generated facts
  12. openshift_facts:
  13. when: install_result | changed
  14. delegate_to: "{{ openshift_ca_host }}"
  15. run_once: true
  16. - name: Create openshift_ca_config_dir if it does not exist
  17. file:
  18. path: "{{ openshift_ca_config_dir }}"
  19. state: directory
  20. delegate_to: "{{ openshift_ca_host }}"
  21. run_once: true
  22. - name: Determine if CA must be created
  23. stat:
  24. path: "{{ openshift_ca_config_dir }}/{{ item }}"
  25. register: g_master_ca_stat_result
  26. with_items:
  27. - ca-bundle.crt
  28. - ca.crt
  29. - ca.key
  30. delegate_to: "{{ openshift_ca_host }}"
  31. run_once: true
  32. - set_fact:
  33. master_ca_missing: "{{ False in (g_master_ca_stat_result.results
  34. | oo_collect(attribute='stat.exists')
  35. | list) }}"
  36. delegate_to: "{{ openshift_ca_host }}"
  37. run_once: true
  38. - name: Create the master certificates if they do not already exist
  39. command: >
  40. {{ openshift.common.admin_binary }} create-master-certs
  41. {% for named_ca_certificate in openshift.master.named_certificates | default([]) | oo_collect('cafile') %}
  42. --certificate-authority {{ named_ca_certificate }}
  43. {% endfor %}
  44. --hostnames={{ openshift_master_hostnames | join(',') }}
  45. --master={{ openshift.master.api_url }}
  46. --public-master={{ openshift.master.public_api_url }}
  47. --cert-dir={{ openshift_ca_config_dir }}
  48. --overwrite=false
  49. when: hostvars[openshift_ca_host].master_ca_missing | bool
  50. delegate_to: "{{ openshift_ca_host }}"
  51. run_once: true