123456789101112131415161718 |
- ---
- # l_repo_hosts is passed in via prerequisites.yml.
- - name: Setup yum repositories for all hosts
- hosts: "{{ l_repo_hosts | default('all:!all') }}"
- gather_facts: no
- tasks:
- - name: subscribe instances to Red Hat Subscription Manager
- import_role:
- name: rhel_subscribe
- when:
- - ansible_distribution == 'RedHat'
- - openshift_deployment_type == 'openshift-enterprise'
- - rhsub_user is defined
- - rhsub_pass is defined
- - name: initialize openshift repos
- import_role:
- name: openshift_repos
|