Merge "Use new kolla-ansible upgrade-bifrost command"

This commit is contained in:
Zuul 2019-08-07 17:48:19 +00:00 committed by Gerrit Code Review
commit f3be413b46
2 changed files with 2 additions and 3 deletions

View File

@ -679,8 +679,7 @@ class SeedServiceUpgrade(KollaAnsibleMixin, KayobeAnsibleMixin, VaultMixin,
playbooks = _build_playbook_list(
"seed-service-upgrade-prep")
self.run_kayobe_playbooks(parsed_args, playbooks)
self.run_kolla_ansible_seed(parsed_args, "deploy-bifrost")
self.run_kolla_ansible_seed(parsed_args, "upgrade-bifrost")
playbooks = _build_playbook_list(
"overcloud-host-image-workaround-resolv",
"overcloud-host-image-workaround-cloud-init",

View File

@ -933,7 +933,7 @@ class TestCase(unittest.TestCase):
expected_calls = [
mock.call(
mock.ANY,
"deploy-bifrost",
"upgrade-bifrost",
),
]
self.assertEqual(expected_calls, mock_kolla_run.call_args_list)