main.yml 986 B

123456789101112131415161718192021222324252627
  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: openshift.common.is_containerized | bool
  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: Pull required docker image
  13. command: >
  14. docker pull {{ openshift.common.cli_image }}
  15. when: openshift.common.is_containerized | bool
  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