Add missing infra playbooks to upgrade run list

unbound and etcd are included in setup-infrastructure. Add them to the
upgrade script's run list.

Change-Id: I5f9c9d839bfda1f24bc2305dc43b671b859a8201
This commit is contained in:
Jimmy McCrory 2016-10-21 11:19:04 -07:00
parent 24d1769f5a
commit 400698b58a
2 changed files with 4 additions and 0 deletions

View File

@ -246,8 +246,10 @@ See :ref:`setup-infra-playbook` for details.
.. code-block:: console
# openstack-ansible unbound-install.yml
# openstack-ansible memcached-install.yml
# openstack-ansible rabbitmq-install.yml -e 'rabbitmq_upgrade=true'
# openstack-ansible etcd-install.yml
# openstack-ansible utility-install.yml
# openstack-ansible rsyslog-install.yml

View File

@ -167,8 +167,10 @@ function main {
# explicitly perform controlled galera cluster restart
RUN_TASKS+=("${UPGRADE_PLAYBOOKS}/galera-cluster-rolling-restart.yml")
# individually run each of the remaining plays from setup-infrastructure
RUN_TASKS+=("unbound-install.yml")
RUN_TASKS+=("memcached-install.yml")
RUN_TASKS+=("rabbitmq-install.yml -e 'rabbitmq_upgrade=true'")
RUN_TASKS+=("etcd-install.yml")
RUN_TASKS+=("utility-install.yml")
RUN_TASKS+=("rsyslog-install.yml")
RUN_TASKS+=("${UPGRADE_PLAYBOOKS}/memcached-flush.yml")