main.yml 812 B

12345678910111213141516171819202122
  1. ---
  2. - name: Install the base package for admin tooling
  3. action: "{{ ansible_pkg_mgr }} name={{ openshift.common.service_type }}{{ openshift_version }} state=present"
  4. when: not is_atomic
  5. - name: Reload generated facts
  6. openshift_facts:
  7. when: install_result | changed
  8. - name: Create openshift_master_config_dir if it doesn't exist
  9. file:
  10. path: "{{ openshift_master_config_dir }}"
  11. state: directory
  12. - name: Create the master certificates if they do not already exist
  13. command: >
  14. {{ openshift.common.admin_binary }} create-master-certs
  15. --hostnames={{ master_hostnames | join(',') }}
  16. --master={{ openshift.master.api_url }}
  17. --public-master={{ openshift.master.public_api_url }}
  18. --cert-dir={{ openshift_master_config_dir }} --overwrite=false
  19. when: master_certs_missing