rhel_subscribe.yml 860 B

123456789101112131415161718192021222324252627282930
  1. ---
  2. - hosts: localhost
  3. connection: local
  4. become: no
  5. gather_facts: no
  6. tasks:
  7. - include_vars: openshift-cluster/cluster_hosts.yml
  8. - add_host:
  9. name: "{{ item }}"
  10. groups: l_oo_all_hosts
  11. with_items: "{{ g_all_hosts }}"
  12. - hosts: l_oo_all_hosts
  13. gather_facts: no
  14. tasks:
  15. - include_vars: openshift-cluster/cluster_hosts.yml
  16. - include: ../common/openshift-cluster/evaluate_groups.yml
  17. - hosts: l_oo_all_hosts
  18. vars:
  19. openshift_deployment_type: "{{ deployment_type }}"
  20. roles:
  21. - role: rhel_subscribe
  22. when: deployment_type in ['atomic-enterprise', 'enterprise', 'openshift-enterprise'] and
  23. ansible_distribution == "RedHat" and
  24. lookup('oo_option', 'rhel_skip_subscription') | default(rhsub_skip, True) |
  25. default('no', True) | lower in ['no', 'false']
  26. - openshift_repos
  27. - os_update_latest