repos.yml 584 B

1234567891011121314151617
  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 and rhsub_pass is defined) or (rhsub_ak is defined and rhsub_orgid is defined)
  14. - name: initialize openshift repos
  15. import_role:
  16. name: openshift_repos