Merge "reload HAProxy config in HA setups when certificate is updated"
[apex-tripleo-heat-templates.git] / extraconfig / tasks / major_upgrade_controller_pacemaker_2.sh
index cfe5bcf..4203eba 100755 (executable)
@@ -32,7 +32,14 @@ fi
 
 start_or_enable_service galera
 check_resource galera started 600
-start_or_enable_service mongod
+start_or_enable_service redis
+check_resource redis started 600
+# We need mongod which is now a systemd service up and running before calling
+# ceilometer-dbsync. There is still a race here: mongod might not be up on all nodes
+# so ceilometer-dbsync will fail a couple of times before that. As it retries indefinitely
+# we should be good.
+# Due to LP Bug https://bugs.launchpad.net/tripleo/+bug/1627254 am using systemctl directly atm
+systemctl start mongod
 check_resource mongod started 600
 
 if [[ -n $(is_bootstrap_node) ]]; then
@@ -55,18 +62,9 @@ if [[ -n $(is_bootstrap_node) ]]; then
     keystone-manage db_sync
     neutron-db-manage --config-file /etc/neutron/neutron.conf --config-file /etc/neutron/plugin.ini upgrade head
     nova-manage db sync
+    nova-manage api_db sync
+    nova-manage db online_data_migrations
+    gnocchi-upgrade
     #TODO(marios):someone from sahara needs to check this:
     # sahara-db-manage --config-file /etc/sahara/sahara.conf upgrade head
 fi
-
-start_or_enable_service memcached
-check_resource memcached started 600
-start_or_enable_service rabbitmq
-check_resource rabbitmq started 600
-start_or_enable_service redis
-check_resource redis started 600
-start_or_enable_service httpd
-check_resource httpd started 1800
-
-# Swift isn't controled by pacemaker
-systemctl_swift start