update_repos_and_packages.yml 731 B

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