update.yml 906 B

12345678910111213141516171819202122232425262728293031323334353637
  1. ---
  2. - hosts: localhost
  3. gather_facts: no
  4. tasks:
  5. - include_vars: vars.yml
  6. - include_vars: cluster_hosts.yml
  7. - add_host:
  8. name: "{{ item }}"
  9. groups: l_oo_all_hosts
  10. with_items: '{{ g_all_hosts }}'
  11. - hosts: l_oo_all_hosts
  12. gather_facts: no
  13. tasks:
  14. - include_vars: vars.yml
  15. - include_vars: cluster_hosts.yml
  16. - name: Populate oo_hosts_to_update group
  17. hosts: localhost
  18. connection: local
  19. become: no
  20. gather_facts: no
  21. vars_files:
  22. - vars.yml
  23. - cluster_hosts.yml
  24. tasks:
  25. - name: Evaluate oo_hosts_to_update
  26. add_host:
  27. name: "{{ item }}"
  28. groups: oo_hosts_to_update
  29. ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}"
  30. ansible_become: "{{ deployment_vars[deployment_type].become }}"
  31. with_items: '{{ g_all_hosts | default([]) }}'
  32. - include: ../../common/openshift-cluster/update_repos_and_packages.yml
  33. - include: config.yml