rhel_subscribe.yml 522 B

123456789101112131415
  1. ---
  2. - include: ../common/openshift-cluster/std_include.yml
  3. tags:
  4. - always
  5. - name: Subscribe hosts, update repos and update OS packages
  6. hosts: l_oo_all_hosts
  7. roles:
  8. - role: rhel_subscribe
  9. when: deployment_type in ['atomic-enterprise', 'enterprise', 'openshift-enterprise'] and
  10. ansible_distribution == "RedHat" and
  11. lookup('oo_option', 'rhel_skip_subscription') | default(rhsub_skip, True) |
  12. default('no', True) | lower in ['no', 'false']
  13. - openshift_repos
  14. - os_update_latest