update_repos_and_packages.yml 729 B

123456789101112131415161718
  1. ---
  2. - include: evaluate_groups.yml
  3. - name: Subscribe hosts, update repos and update OS packages
  4. hosts: oo_hosts_to_update
  5. roles:
  6. # Explicitly calling openshift_facts because it appears that when
  7. # rhel_subscribe is skipped that the openshift_facts dependency for
  8. # openshift_repos is also skipped (this is the case at least for Ansible
  9. # 2.0.2)
  10. - openshift_facts
  11. - role: rhel_subscribe
  12. when: deployment_type in ["enterprise", "atomic-enterprise", "openshift-enterprise"] and
  13. ansible_distribution == "RedHat" and
  14. lookup('oo_option', 'rhel_skip_subscription') | default(rhsub_skip, True) |
  15. default('no', True) | lower in ['no', 'false']
  16. - openshift_repos
  17. - os_update_latest