main.yml 757 B

1234567891011121314151617181920
  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. - name: Reload generated facts
  5. openshift_facts:
  6. - name: Create openshift_master_config_dir if it doesn't exist
  7. file:
  8. path: "{{ openshift_master_config_dir }}"
  9. state: directory
  10. - name: Create the master certificates if they do not already exist
  11. command: >
  12. {{ openshift.common.admin_binary }} create-master-certs
  13. --hostnames={{ master_hostnames | join(',') }}
  14. --master={{ openshift.master.api_url }}
  15. --public-master={{ openshift.master.public_api_url }}
  16. --cert-dir={{ openshift_master_config_dir }} --overwrite=false
  17. when: master_certs_missing