diff options
author | Thomas Wiest <twiest@users.noreply.github.com> | 2015-06-08 10:57:35 -0400 |
---|---|---|
committer | Thomas Wiest <twiest@users.noreply.github.com> | 2015-06-08 10:57:35 -0400 |
commit | d30276dac07b3df32aa02711e27e94e90d925c89 (patch) | |
tree | 66074483c40a232a00c4cd3b87633d3431bd2ed6 /playbooks/openstack/openshift-cluster/update.yml | |
parent | e03efb3d8570981ab818bf1b18c01e3573977ba3 (diff) | |
parent | 901f0ee491efb34f9788e11dd6d572928146da91 (diff) | |
download | openshift-d30276dac07b3df32aa02711e27e94e90d925c89.tar.gz openshift-d30276dac07b3df32aa02711e27e94e90d925c89.tar.bz2 openshift-d30276dac07b3df32aa02711e27e94e90d925c89.tar.xz openshift-d30276dac07b3df32aa02711e27e94e90d925c89.zip |
Merge pull request #186 from lhuard1A/os
Implement OpenStack provider for openshift-ansible
Diffstat (limited to 'playbooks/openstack/openshift-cluster/update.yml')
-rw-r--r-- | playbooks/openstack/openshift-cluster/update.yml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/playbooks/openstack/openshift-cluster/update.yml b/playbooks/openstack/openshift-cluster/update.yml new file mode 100644 index 000000000..5e7ab4e58 --- /dev/null +++ b/playbooks/openstack/openshift-cluster/update.yml @@ -0,0 +1,18 @@ +--- +- name: Populate oo_hosts_to_update group + hosts: localhost + gather_facts: no + vars_files: + - vars.yml + tasks: + - name: Evaluate oo_hosts_to_update + add_host: + name: "{{ item }}" + groups: oo_hosts_to_update + ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}" + ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}" + with_items: groups["tag_env-host-type_{{ cluster_id }}-openshift-master"] | union(groups["tag_env-host-type_{{ cluster_id }}-openshift-node"]) | default([]) + +- include: ../../common/openshift-cluster/update_repos_and_packages.yml + +- include: config.yml |