rhel_subscribe.yml 539 B

12345678910111213141516
  1. ---
  2. - include: openshift-cluster/initialize_groups.yml
  3. tags:
  4. - always
  5. - name: Subscribe hosts, update repos and update OS packages
  6. # Temporarily reverting to OSEv3 until group standardization is complete
  7. hosts: OSEv3
  8. roles:
  9. - role: rhel_subscribe
  10. when:
  11. - deployment_type == 'openshift-enterprise'
  12. - ansible_distribution == "RedHat"
  13. - lookup('oo_option', 'rhel_skip_subscription') | default(rhsub_skip, True) | default('no', True) | lower in ['no', 'false']
  14. - role: openshift_repos
  15. - role: os_update_latest