main.yml 986 B

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