main.yml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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.crt
  28. - ca.key
  29. delegate_to: "{{ openshift_ca_host }}"
  30. run_once: true
  31. - set_fact:
  32. master_ca_missing: "{{ False in (g_master_ca_stat_result.results
  33. | oo_collect(attribute='stat.exists')
  34. | list) }}"
  35. delegate_to: "{{ openshift_ca_host }}"
  36. run_once: true
  37. - name: Create the master certificates if they do not already exist
  38. command: >
  39. {{ openshift.common.admin_binary }} create-master-certs
  40. --hostnames={{ openshift_master_hostnames | join(',') }}
  41. --master={{ openshift.master.api_url }}
  42. --public-master={{ openshift.master.public_api_url }}
  43. --cert-dir={{ openshift_ca_config_dir }}
  44. --overwrite=false
  45. when: hostvars[openshift_ca_host].master_ca_missing | bool
  46. delegate_to: "{{ openshift_ca_host }}"
  47. run_once: true