repos.yml 532 B

123456789101112131415161718
  1. ---
  2. # l_repo_hosts is passed in via prerequisites.yml.
  3. - name: Setup yum repositories for all hosts
  4. hosts: "{{ l_repo_hosts | default('all:!all') }}"
  5. gather_facts: no
  6. tasks:
  7. - name: subscribe instances to Red Hat Subscription Manager
  8. import_role:
  9. name: rhel_subscribe
  10. when:
  11. - ansible_distribution == 'RedHat'
  12. - openshift_deployment_type == 'openshift-enterprise'
  13. - rhsub_user is defined
  14. - rhsub_pass is defined
  15. - name: initialize openshift repos
  16. import_role:
  17. name: openshift_repos