diff options
| author | Michael Gugino <mgugino@redhat.com> | 2017-11-09 17:00:00 -0500 | 
|---|---|---|
| committer | Michael Gugino <mgugino@redhat.com> | 2017-11-16 09:03:35 -0500 | 
| commit | afa4fd5799b0ff43d625d061e4c2bde66b5fb86a (patch) | |
| tree | 2654bb42deb7dcd3b907b1476ec0fbe55c133fb2 /playbooks/common/openshift-cluster/upgrades | |
| parent | 8a85bc3a00efb654238a58e1faa2a2629d9360b1 (diff) | |
| download | openshift-afa4fd5799b0ff43d625d061e4c2bde66b5fb86a.tar.gz openshift-afa4fd5799b0ff43d625d061e4c2bde66b5fb86a.tar.bz2 openshift-afa4fd5799b0ff43d625d061e4c2bde66b5fb86a.tar.xz openshift-afa4fd5799b0ff43d625d061e4c2bde66b5fb86a.zip | |
Combine openshift_node and openshift_node_upgrade
Currently, having openshift_node and openshift_node_upgrade
as two distinct roles has created a duplication across
handlers, templates, and some tasks.
This commit combines the roles to reduce duplication
and bugs encountered by not putting code in both places.
Diffstat (limited to 'playbooks/common/openshift-cluster/upgrades')
| -rw-r--r-- | playbooks/common/openshift-cluster/upgrades/upgrade_control_plane.yml | 10 | ||||
| -rw-r--r-- | playbooks/common/openshift-cluster/upgrades/upgrade_nodes.yml | 18 | 
2 files changed, 15 insertions, 13 deletions
| diff --git a/playbooks/common/openshift-cluster/upgrades/upgrade_control_plane.yml b/playbooks/common/openshift-cluster/upgrades/upgrade_control_plane.yml index 399b818a7..fa65567c2 100644 --- a/playbooks/common/openshift-cluster/upgrades/upgrade_control_plane.yml +++ b/playbooks/common/openshift-cluster/upgrades/upgrade_control_plane.yml @@ -317,13 +317,13 @@      delay: 60    roles: -  - lib_openshift    - openshift_facts -  - docker -  - openshift_node_dnsmasq -  - openshift_node_upgrade -    post_tasks: +  - include_role: +      name: openshift_node +      tasks_from: upgrade.yml +    vars: +      openshift_node_upgrade_in_progress: True    - name: Set node schedulability      oc_adm_manage_node:        node: "{{ openshift.node.nodename | lower }}" diff --git a/playbooks/common/openshift-cluster/upgrades/upgrade_nodes.yml b/playbooks/common/openshift-cluster/upgrades/upgrade_nodes.yml index c93a5d89c..5dc8193a7 100644 --- a/playbooks/common/openshift-cluster/upgrades/upgrade_nodes.yml +++ b/playbooks/common/openshift-cluster/upgrades/upgrade_nodes.yml @@ -34,16 +34,18 @@      delay: 60    roles: -  - lib_openshift    - openshift_facts -  - docker -  - openshift_node_dnsmasq -  - openshift_node_upgrade -  - role: openshift_excluder -    r_openshift_excluder_action: enable -    r_openshift_excluder_service_type: "{{ openshift.common.service_type }}" -    post_tasks: +  - include_role: +      name: openshift_node +      tasks_from: upgrade.yml +    vars: +      openshift_node_upgrade_in_progress: True +  - include_role: +      name: openshift_excluder +    vars: +      r_openshift_excluder_action: enable +      r_openshift_excluder_service_type: "{{ openshift.common.service_type }}"    - name: Set node schedulability      oc_adm_manage_node:        node: "{{ openshift.node.nodename | lower }}" | 
