update.yml 595 B

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