update.yml 627 B

123456789101112131415161718
  1. ---
  2. - name: Populate oo_hosts_to_update group
  3. hosts: localhost
  4. gather_facts: no
  5. vars_files:
  6. - vars.yml
  7. tasks:
  8. - name: Evaluate oo_hosts_to_update
  9. add_host:
  10. name: "{{ item }}"
  11. groups: oo_hosts_to_update
  12. ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}"
  13. ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}"
  14. with_items: groups["tag_env-host-type-{{ cluster_id }}-openshift-master"] | union(groups["tag_env-host-type-{{ cluster_id }}-openshift-node"]) | default([])
  15. - include: ../../common/openshift-cluster/update_repos_and_packages.yml
  16. - include: config.yml