update.yml 575 B

123456789101112131415161718192021
  1. ---
  2. - name: Populate oo_hosts_to_update group
  3. hosts: localhost
  4. connection: local
  5. become: no
  6. gather_facts: no
  7. vars_files:
  8. - vars.yml
  9. - cluster_hosts.yml
  10. tasks:
  11. - name: Evaluate oo_hosts_to_update
  12. add_host:
  13. name: "{{ item }}"
  14. groups: oo_hosts_to_update
  15. ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}"
  16. ansible_become: "{{ deployment_vars[deployment_type].become }}"
  17. with_items: "{{ g_all_hosts | default([]) }}"
  18. - include: ../../common/openshift-cluster/update_repos_and_packages.yml
  19. - include: config.yml