diff options
| author | Devan Goodwin <dgoodwin@redhat.com> | 2016-10-20 12:07:29 -0300 | 
|---|---|---|
| committer | Devan Goodwin <dgoodwin@redhat.com> | 2016-10-21 13:44:50 -0300 | 
| commit | abbeb683f26ce4a6db2ea17cd7f3c21f8245d10f (patch) | |
| tree | f48793b37a73f240f5c34b28593dfa8dd4406eb8 /playbooks/common | |
| parent | 9fa3c6c98420e4e340507193fd3ad80c15e5c19e (diff) | |
| download | openshift-abbeb683f26ce4a6db2ea17cd7f3c21f8245d10f.tar.gz openshift-abbeb683f26ce4a6db2ea17cd7f3c21f8245d10f.tar.bz2 openshift-abbeb683f26ce4a6db2ea17cd7f3c21f8245d10f.tar.xz openshift-abbeb683f26ce4a6db2ea17cd7f3c21f8245d10f.zip | |
Fix and reorder control plane service restart.
This was missed in the standalone upgrade control plane playbook.
However it also looks to be out of order, we should restart before
reconciling and upgrading nodes. As such moved the restart directly into
the control plane upgrade common code, and placed it before
reconciliation.
Diffstat (limited to 'playbooks/common')
| -rw-r--r-- | playbooks/common/openshift-cluster/upgrades/upgrade_control_plane.yml | 15 | 
1 files changed, 6 insertions, 9 deletions
| diff --git a/playbooks/common/openshift-cluster/upgrades/upgrade_control_plane.yml b/playbooks/common/openshift-cluster/upgrades/upgrade_control_plane.yml index 2c641e21e..c80e9e74d 100644 --- a/playbooks/common/openshift-cluster/upgrades/upgrade_control_plane.yml +++ b/playbooks/common/openshift-cluster/upgrades/upgrade_control_plane.yml @@ -99,6 +99,8 @@    - include: rpm_upgrade.yml component=master      when: not openshift.common.is_containerized | bool +# Create service signer cert when missing. Service signer certificate +# is added to master config in the master config hook for v3_3.  - name: Determine if service signer cert must be created    hosts: oo_first_master    tasks: @@ -108,8 +110,6 @@      register: service_signer_cert_stat      changed_when: false -# Create service signer cert when missing. Service signer certificate -# is added to master config in the master config hook for v3_3.  - include: create_service_signer_cert.yml  - name: Upgrade master config and systemd units @@ -128,13 +128,6 @@    - name: Update systemd units      include: ../../../../roles/openshift_master/tasks/systemd_units.yml -#  - name: Upgrade master configuration -#    openshift_upgrade_config: -#      from_version: '3.1' -#       to_version: '3.2' -#      role: master -#      config_base: "{{ hostvars[inventory_hostname].openshift.common.config_base }}" -    - name: Check for ca-bundle.crt      stat:        path: "{{ openshift.common.config_base }}/master/ca-bundle.crt" @@ -184,6 +177,10 @@        msg: "Upgrade cannot continue. The following masters did not finish updating: {{ master_update_failed | join(',') }}"      when: master_update_failed | length > 0 +# We are now ready to restart master services (or entire system +# depending on openshift_rolling_restart_mode): +- include: ../../openshift-master/restart.yml +  ###############################################################################  # Reconcile Cluster Roles, Cluster Role Bindings and Security Context Constraints  ############################################################################### | 
