repos.yml 450 B

12345678910111213141516
  1. ---
  2. - name: Setup yum repositories for all hosts
  3. hosts: oo_all_hosts
  4. gather_facts: no
  5. tasks:
  6. - name: subscribe instances to Red Hat Subscription Manager
  7. import_role:
  8. name: rhel_subscribe
  9. when:
  10. - ansible_distribution == 'RedHat'
  11. - openshift_deployment_type == 'openshift-enterprise'
  12. - rhsub_user is defined
  13. - rhsub_pass is defined
  14. - name: initialize openshift repos
  15. import_role:
  16. name: openshift_repos