From 0b14c258a1d8ff9e243c8746926b3a4db1bf0954 Mon Sep 17 00:00:00 2001 From: Yurii Prokulevych Date: Tue, 18 Sep 2018 13:24:56 +0200 Subject: [PATCH] Fix typo in upgrade playbook's name. Fix typo to avoid error when wrong playbook is referenced: openstack overcloud upgrade run \ --stack overcloud --roles Controller \ --playbook post_upgrade_steps_playbooks.yaml ... u'ERROR! playbooks must be a list of plays' Change-Id: I2a02d567bbc9e95c198d8cfe3e368d97b43be9a9 --- tripleoclient/v1/overcloud_upgrade.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tripleoclient/v1/overcloud_upgrade.py b/tripleoclient/v1/overcloud_upgrade.py index d65789844..9b336be0a 100644 --- a/tripleoclient/v1/overcloud_upgrade.py +++ b/tripleoclient/v1/overcloud_upgrade.py @@ -125,7 +125,7 @@ class UpgradeRun(command.Command): "playbooks to run. That is the " "upgrade_steps_playbook.yaml " "then deploy_steps_playbook.yaml and then " - "post_upgrade_steps_playbooks.yaml. Set " + "post_upgrade_steps_playbook.yaml. Set " "this to each of those playbooks in " "consecutive invocations of this command " "if you prefer to run them manually. Note: "