Disable openstack-cinder-volume in step1 and reenable it in step2
authorMichele Baldessari <michele@acksyn.org>
Sun, 25 Sep 2016 09:52:04 +0000 (11:52 +0200)
committerMichele Baldessari <michele@acksyn.org>
Sun, 25 Sep 2016 09:52:04 +0000 (11:52 +0200)
commitb70d6e6f34ea0d379b9a787da9f6f8909c179dc8
tree49e36dc73889d7a42c335ef323161eab0b711df7
parent5d49b75b6e8c608ede6fc7bd63b06055ce5f6317
Disable openstack-cinder-volume in step1 and reenable it in step2

Currently we do not disable openstack-cinder-volume during our
major-upgrade-pacemaker step. This leads to the following scenario. In
major_upgrade_controller_pacemaker_2.sh we do:

  start_or_enable_service galera
  check_resource galera started 600
  ....
  if [[ -n $(is_bootstrap_node) ]]; then
  ...
      cinder-manage db sync
  ...

What happens here is that since openstack-cinder-volume was never
disabled it will already be started by pacemaker before we call
cinder-manage and this will give us the following errors during the
start:
06:05:21.861 19482 ERROR cinder.cmd.volume DBError:
                   (pymysql.err.InternalError) (1054, u"Unknown column 'services.cluster_name' in 'field list'")

Change-Id: I01b2daf956c30b9a4985ea62cbf4c941ec66dcdf
Closes-Bug: #1627470
extraconfig/tasks/major_upgrade_controller_pacemaker_1.sh
extraconfig/tasks/major_upgrade_controller_pacemaker_2.sh