Bug 2099655 - OSP17 openstack overcloud external-upgrade run command returns a traceback
Summary: OSP17 openstack overcloud external-upgrade run command returns a traceback
Keywords:
Status: CLOSED ERRATA
Alias: None
Product: Red Hat OpenStack
Classification: Red Hat
Component: python-tripleoclient
Version: 17.0 (Wallaby)
Hardware: Unspecified
OS: Unspecified
high
high
Target Milestone: rc
: 17.1
Assignee: Rabi Mishra
QA Contact: David Rosenfeld
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2022-06-21 12:36 UTC by David Rosenfeld
Modified: 2023-08-16 01:11 UTC (History)
7 users (show)

Fixed In Version: python-tripleoclient-16.5.1-1.20230505010953.534fe49.el9ost
Doc Type: No Doc Update
Doc Text:
Clone Of:
Environment:
Last Closed: 2023-08-16 01:11:21 UTC
Target Upstream Version:
Embargoed:


Attachments (Terms of Use)


Links
System ID Private Priority Status Summary Last Updated
OpenStack gerrit 847138 0 None NEW Fix upgrade/external_update/external_upgrade 2022-06-22 09:08:30 UTC
Red Hat Issue Tracker OSP-15863 0 None None None 2022-06-21 12:40:51 UTC
Red Hat Product Errata RHEA-2023:4577 0 None None None 2023-08-16 01:11:53 UTC

Description David Rosenfeld 2022-06-21 12:36:20 UTC
Description of problem: Executing the command: openstack overcloud external-upgrade run -y --stack overcloud --tags container_image_prepare   returns a traceback. Even if there is nothing to output the command should execute gracefully without a traceback:

penstack overcloud external-upgrade run -y --stack overcloud --tags container_image_prepare
/usr/lib/python3.9/site-packages/ansible/_vendor/__init__.py:42: UserWarning: One or more Python packages bundled by this ansible-core distribution were already loaded (pyparsing). This may result in undefined behavior.
  warnings.warn('One or more Python packages bundled by this ansible-core distribution were already '
2022-06-21 12:28:14.074 1006613 INFO tripleoclient.utils.utils [-] Temporary directory [ /tmp/tripleod24uhh3z ] cleaned up
2022-06-21 12:28:14.075 1006613 ERROR tripleoclient.v1.overcloud_external_upgrade.ExternalUpgradeRun [-] Exception occured while running the command: keystoneauth1.exceptions.catalog.EndpointNotFound: public endpoint for orchestration service in regionOne region not found
2022-06-21 12:28:14.075 1006613 ERROR tripleoclient.v1.overcloud_external_upgrade.ExternalUpgradeRun Traceback (most recent call last):
2022-06-21 12:28:14.075 1006613 ERROR tripleoclient.v1.overcloud_external_upgrade.ExternalUpgradeRun   File "/usr/lib/python3.9/site-packages/tripleoclient/command.py", line 34, in run
2022-06-21 12:28:14.075 1006613 ERROR tripleoclient.v1.overcloud_external_upgrade.ExternalUpgradeRun     super(Command, self).run(parsed_args)
2022-06-21 12:28:14.075 1006613 ERROR tripleoclient.v1.overcloud_external_upgrade.ExternalUpgradeRun   File "/usr/lib/python3.9/site-packages/osc_lib/command/command.py", line 39, in run
2022-06-21 12:28:14.075 1006613 ERROR tripleoclient.v1.overcloud_external_upgrade.ExternalUpgradeRun     return super(Command, self).run(parsed_args)
2022-06-21 12:28:14.075 1006613 ERROR tripleoclient.v1.overcloud_external_upgrade.ExternalUpgradeRun   File "/usr/lib/python3.9/site-packages/cliff/command.py", line 186, in run
2022-06-21 12:28:14.075 1006613 ERROR tripleoclient.v1.overcloud_external_upgrade.ExternalUpgradeRun     return_code = self.take_action(parsed_args) or 0
2022-06-21 12:28:14.075 1006613 ERROR tripleoclient.v1.overcloud_external_upgrade.ExternalUpgradeRun   File "/usr/lib/python3.9/site-packages/tripleoclient/v1/overcloud_external_upgrade.py", line 131, in take_action
2022-06-21 12:28:14.075 1006613 ERROR tripleoclient.v1.overcloud_external_upgrade.ExternalUpgradeRun     _, ansible_dir = self.get_ansible_key_and_dir(
2022-06-21 12:28:14.075 1006613 ERROR tripleoclient.v1.overcloud_external_upgrade.ExternalUpgradeRun   File "/usr/lib/python3.9/site-packages/tripleoclient/command.py", line 62, in get_ansible_key_and_dir
2022-06-21 12:28:14.075 1006613 ERROR tripleoclient.v1.overcloud_external_upgrade.ExternalUpgradeRun     stack_config.fetch_config(stack),
2022-06-21 12:28:14.075 1006613 ERROR tripleoclient.v1.overcloud_external_upgrade.ExternalUpgradeRun   File "/usr/lib/python3.9/site-packages/tripleo_common/utils/config.py", line 209, in fetch_config
2022-06-21 12:28:14.075 1006613 ERROR tripleoclient.v1.overcloud_external_upgrade.ExternalUpgradeRun     stack = self.client.stacks.get(name)
2022-06-21 12:28:14.075 1006613 ERROR tripleoclient.v1.overcloud_external_upgrade.ExternalUpgradeRun   File "/usr/lib/python3.9/site-packages/heatclient/v1/stacks.py", line 298, in get
2022-06-21 12:28:14.075 1006613 ERROR tripleoclient.v1.overcloud_external_upgrade.ExternalUpgradeRun     resp = self.client.get('/stacks/%s' % stack_id, **kwargs)
2022-06-21 12:28:14.075 1006613 ERROR tripleoclient.v1.overcloud_external_upgrade.ExternalUpgradeRun   File "/usr/lib/python3.9/site-packages/keystoneauth1/adapter.py", line 395, in get
2022-06-21 12:28:14.075 1006613 ERROR tripleoclient.v1.overcloud_external_upgrade.ExternalUpgradeRun     return self.request(url, 'GET', **kwargs)
2022-06-21 12:28:14.075 1006613 ERROR tripleoclient.v1.overcloud_external_upgrade.ExternalUpgradeRun   File "/usr/lib/python3.9/site-packages/heatclient/common/http.py", line 317, in request
2022-06-21 12:28:14.075 1006613 ERROR tripleoclient.v1.overcloud_external_upgrade.ExternalUpgradeRun     resp, body = super(SessionClient, self).request(
2022-06-21 12:28:14.075 1006613 ERROR tripleoclient.v1.overcloud_external_upgrade.ExternalUpgradeRun   File "/usr/lib/python3.9/site-packages/keystoneauth1/adapter.py", line 554, in request
2022-06-21 12:28:14.075 1006613 ERROR tripleoclient.v1.overcloud_external_upgrade.ExternalUpgradeRun     resp = super(LegacyJsonAdapter, self).request(*args, **kwargs)
2022-06-21 12:28:14.075 1006613 ERROR tripleoclient.v1.overcloud_external_upgrade.ExternalUpgradeRun   File "/usr/lib/python3.9/site-packages/keystoneauth1/adapter.py", line 257, in request
2022-06-21 12:28:14.075 1006613 ERROR tripleoclient.v1.overcloud_external_upgrade.ExternalUpgradeRun     return self.session.request(url, method, **kwargs)
2022-06-21 12:28:14.075 1006613 ERROR tripleoclient.v1.overcloud_external_upgrade.ExternalUpgradeRun   File "/usr/lib/python3.9/site-packages/keystoneauth1/session.py", line 811, in request
2022-06-21 12:28:14.075 1006613 ERROR tripleoclient.v1.overcloud_external_upgrade.ExternalUpgradeRun     base_url = self.get_endpoint(auth, allow=allow,
2022-06-21 12:28:14.075 1006613 ERROR tripleoclient.v1.overcloud_external_upgrade.ExternalUpgradeRun   File "/usr/lib/python3.9/site-packages/keystoneauth1/session.py", line 1243, in get_endpoint
2022-06-21 12:28:14.075 1006613 ERROR tripleoclient.v1.overcloud_external_upgrade.ExternalUpgradeRun     return auth.get_endpoint(self, **kwargs)
2022-06-21 12:28:14.075 1006613 ERROR tripleoclient.v1.overcloud_external_upgrade.ExternalUpgradeRun   File "/usr/lib/python3.9/site-packages/keystoneauth1/identity/base.py", line 375, in get_endpoint
2022-06-21 12:28:14.075 1006613 ERROR tripleoclient.v1.overcloud_external_upgrade.ExternalUpgradeRun     endpoint_data = self.get_endpoint_data(
2022-06-21 12:28:14.075 1006613 ERROR tripleoclient.v1.overcloud_external_upgrade.ExternalUpgradeRun   File "/usr/lib/python3.9/site-packages/keystoneauth1/identity/base.py", line 275, in get_endpoint_data
2022-06-21 12:28:14.075 1006613 ERROR tripleoclient.v1.overcloud_external_upgrade.ExternalUpgradeRun     endpoint_data = service_catalog.endpoint_data_for(
2022-06-21 12:28:14.075 1006613 ERROR tripleoclient.v1.overcloud_external_upgrade.ExternalUpgradeRun   File "/usr/lib/python3.9/site-packages/keystoneauth1/access/service_catalog.py", line 462, in endpoint_data_for
2022-06-21 12:28:14.075 1006613 ERROR tripleoclient.v1.overcloud_external_upgrade.ExternalUpgradeRun     raise exceptions.EndpointNotFound(msg)
2022-06-21 12:28:14.075 1006613 ERROR tripleoclient.v1.overcloud_external_upgrade.ExternalUpgradeRun keystoneauth1.exceptions.catalog.EndpointNotFound: public endpoint for orchestration service in regionOne region not found
2022-06-21 12:28:14.075 1006613 ERROR tripleoclient.v1.overcloud_external_upgrade.ExternalUpgradeRun 
2022-06-21 12:28:14.085 1006613 ERROR openstack [-] public endpoint for orchestration service in regionOne region not found: keystoneauth1.exceptions.catalog.EndpointNotFound: public endpoint for orchestration service in regionOne region not found
2022-06-21 12:28:14.085 1006613 INFO osc_lib.shell [-] END return value: 1



Version-Release number of selected component (if applicable): RHOS-17.0-RHEL-9-20220615.n.2


How reproducible: Every time


Steps to Reproduce:
1. Enter command:  openstack overcloud external-upgrade run -y --stack overcloud --tags container_image_prepare
2.
3.

Actual results: Command executes with a traceback


Expected results: Command executes without a traceback


Additional info:

Comment 4 David Rosenfeld 2022-12-14 14:53:39 UTC
Command now successfully executes without a traceback:

(undercloud) [stack@undercloud-0 ~]$ openstack overcloud external-upgrade run -y --stack overcloud --tags container_image_prepare
2022-12-14 14:50:23.491 145058 INFO tripleoclient.utils.utils [-] Running Ansible playbook: /home/stack/overcloud-deploy/overcloud/config-download/tripleo-multi-playbook.yaml, multi-playbook execution: ['/home/stack/overcloud-deploy/overcloud/config-download/overcloud/external_upgrade_steps_playbook.yaml'] Working directory: /home/stack/overcloud-deploy/overcloud/config-download, Playbook directory: /home/stack/overcloud-deploy/overcloud/config-download
[DEPRECATION WARNING]: ANSIBLE_CALLBACK_WHITELIST option, normalizing names to 
new standard, use ANSIBLE_CALLBACKS_ENABLED instead. This feature will be 
removed from ansible-core in version 2.15. Deprecation warnings can be disabled
 by setting deprecation_warnings=False in ansible.cfg.

PLAY [Check if required variables are defined] *********************************

PLAY [Clear cached facts] ******************************************************

PLAY [Gather facts] ************************************************************

PLAY [Load global variables] ***************************************************
2022-12-14 14:50:24.666171 | 525400bf-7fe4-afe6-d7b6-000000000019 |         OK | ansible.builtin.include_vars | controller-0
2022-12-14 14:50:24.674090 | 525400bf-7fe4-afe6-d7b6-000000000019 |     TIMING | ansible.builtin.include_vars | controller-0 | 0:00:00.295492 | 0.10s
2022-12-14 14:50:24.674791 | 525400bf-7fe4-afe6-d7b6-000000000019 |         OK | ansible.builtin.include_vars | undercloud
2022-12-14 14:50:24.675170 | 525400bf-7fe4-afe6-d7b6-000000000019 |     TIMING | ansible.builtin.include_vars | undercloud | 0:00:00.296599 | 0.12s
2022-12-14 14:50:24.675517 | 525400bf-7fe4-afe6-d7b6-000000000019 |         OK | ansible.builtin.include_vars | ceph-0
2022-12-14 14:50:24.675833 | 525400bf-7fe4-afe6-d7b6-000000000019 |     TIMING | ansible.builtin.include_vars | ceph-0 | 0:00:00.297265 | 0.09s
2022-12-14 14:50:24.676157 | 525400bf-7fe4-afe6-d7b6-000000000019 |         OK | ansible.builtin.include_vars | ceph-1
2022-12-14 14:50:24.676489 | 525400bf-7fe4-afe6-d7b6-000000000019 |     TIMING | ansible.builtin.include_vars | ceph-1 | 0:00:00.297920 | 0.09s
2022-12-14 14:50:24.676798 | 525400bf-7fe4-afe6-d7b6-000000000019 |         OK | ansible.builtin.include_vars | ceph-2
2022-12-14 14:50:24.677107 | 525400bf-7fe4-afe6-d7b6-000000000019 |     TIMING | ansible.builtin.include_vars | ceph-2 | 0:00:00.298538 | 0.04s
2022-12-14 14:50:24.687857 | 525400bf-7fe4-afe6-d7b6-000000000019 |         OK | ansible.builtin.include_vars | compute-0
2022-12-14 14:50:24.688798 | 525400bf-7fe4-afe6-d7b6-000000000019 |     TIMING | ansible.builtin.include_vars | compute-0 | 0:00:00.310217 | 0.03s

PLAY [Include extra variables from files] **************************************
2022-12-14 14:50:24.714247 | 525400bf-7fe4-afe6-d7b6-00000000001c |       TASK | Include Service VIP vars
2022-12-14 14:50:24.745022 | 525400bf-7fe4-afe6-d7b6-00000000001c |    IGNORED | Include Service VIP vars | undercloud | error={"ansible_facts": {"service_vip_vars": {}}, "ansible_included_var_files": [], "changed": false, "message": "Could not find or access '/home/stack/overcloud-deploy/overcloud/config-download/overcloud/service_vip_vars.yaml' on the Ansible Controller.\nIf you are using a module and expect the file to exist on the remote, see the remote_src option"}
2022-12-14 14:50:24.746555 | 525400bf-7fe4-afe6-d7b6-00000000001c |     TIMING | Include Service VIP vars | undercloud | 0:00:00.367950 | 0.03s
2022-12-14 14:50:24.758696 | 525400bf-7fe4-afe6-d7b6-00000000001c |    IGNORED | Include Service VIP vars | controller-0 | error={"ansible_facts": {"service_vip_vars": {}}, "ansible_included_var_files": [], "changed": false, "message": "Could not find or access '/home/stack/overcloud-deploy/overcloud/config-download/overcloud/service_vip_vars.yaml' on the Ansible Controller.\nIf you are using a module and expect the file to exist on the remote, see the remote_src option"}
2022-12-14 14:50:24.760191 | 525400bf-7fe4-afe6-d7b6-00000000001c |     TIMING | Include Service VIP vars | controller-0 | 0:00:00.381577 | 0.03s
2022-12-14 14:50:24.775895 | 525400bf-7fe4-afe6-d7b6-00000000001c |    IGNORED | Include Service VIP vars | ceph-0 | error={"ansible_facts": {"service_vip_vars": {}}, "ansible_included_var_files": [], "changed": false, "message": "Could not find or access '/home/stack/overcloud-deploy/overcloud/config-download/overcloud/service_vip_vars.yaml' on the Ansible Controller.\nIf you are using a module and expect the file to exist on the remote, see the remote_src option"}
2022-12-14 14:50:24.778970 | 525400bf-7fe4-afe6-d7b6-00000000001c |     TIMING | Include Service VIP vars | ceph-0 | 0:00:00.400375 | 0.04s
2022-12-14 14:50:24.790561 | 525400bf-7fe4-afe6-d7b6-00000000001c |    IGNORED | Include Service VIP vars | ceph-1 | error={"ansible_facts": {"service_vip_vars": {}}, "ansible_included_var_files": [], "changed": false, "message": "Could not find or access '/home/stack/overcloud-deploy/overcloud/config-download/overcloud/service_vip_vars.yaml' on the Ansible Controller.\nIf you are using a module and expect the file to exist on the remote, see the remote_src option"}
2022-12-14 14:50:24.793765 | 525400bf-7fe4-afe6-d7b6-00000000001c |     TIMING | Include Service VIP vars | ceph-1 | 0:00:00.415173 | 0.04s
2022-12-14 14:50:24.794497 | 525400bf-7fe4-afe6-d7b6-00000000001c |    IGNORED | Include Service VIP vars | ceph-2 | error={"ansible_facts": {"service_vip_vars": {}}, "ansible_included_var_files": [], "changed": false, "message": "Could not find or access '/home/stack/overcloud-deploy/overcloud/config-download/overcloud/service_vip_vars.yaml' on the Ansible Controller.\nIf you are using a module and expect the file to exist on the remote, see the remote_src option"}
2022-12-14 14:50:24.794892 | 525400bf-7fe4-afe6-d7b6-00000000001c |     TIMING | Include Service VIP vars | ceph-2 | 0:00:00.416322 | 0.02s
2022-12-14 14:50:24.816055 | 525400bf-7fe4-afe6-d7b6-00000000001c |    IGNORED | Include Service VIP vars | compute-0 | error={"ansible_facts": {"service_vip_vars": {}}, "ansible_included_var_files": [], "changed": false, "message": "Could not find or access '/home/stack/overcloud-deploy/overcloud/config-download/overcloud/service_vip_vars.yaml' on the Ansible Controller.\nIf you are using a module and expect the file to exist on the remote, see the remote_src option"}
2022-12-14 14:50:24.817479 | 525400bf-7fe4-afe6-d7b6-00000000001c |     TIMING | Include Service VIP vars | compute-0 | 0:00:00.438897 | 0.03s
2022-12-14 14:50:24.826888 | 525400bf-7fe4-afe6-d7b6-00000000001d |       TASK | Include OVN bridge MAC address variables
2022-12-14 14:50:24.859738 | 525400bf-7fe4-afe6-d7b6-00000000001d |         OK | Include OVN bridge MAC address variables | undercloud
2022-12-14 14:50:24.861301 | 525400bf-7fe4-afe6-d7b6-00000000001d |     TIMING | Include OVN bridge MAC address variables | undercloud | 0:00:00.482699 | 0.03s
2022-12-14 14:50:24.874450 | 525400bf-7fe4-afe6-d7b6-00000000001d |         OK | Include OVN bridge MAC address variables | controller-0
2022-12-14 14:50:24.877182 | 525400bf-7fe4-afe6-d7b6-00000000001d |     TIMING | Include OVN bridge MAC address variables | controller-0 | 0:00:00.498569 | 0.04s
2022-12-14 14:50:24.887914 | 525400bf-7fe4-afe6-d7b6-00000000001d |         OK | Include OVN bridge MAC address variables | ceph-0
2022-12-14 14:50:24.890972 | 525400bf-7fe4-afe6-d7b6-00000000001d |     TIMING | Include OVN bridge MAC address variables | ceph-0 | 0:00:00.512381 | 0.04s
2022-12-14 14:50:24.902434 | 525400bf-7fe4-afe6-d7b6-00000000001d |         OK | Include OVN bridge MAC address variables | ceph-1
2022-12-14 14:50:24.903974 | 525400bf-7fe4-afe6-d7b6-00000000001d |     TIMING | Include OVN bridge MAC address variables | ceph-1 | 0:00:00.525378 | 0.03s
2022-12-14 14:50:24.914951 | 525400bf-7fe4-afe6-d7b6-00000000001d |         OK | Include OVN bridge MAC address variables | ceph-2
2022-12-14 14:50:24.915555 | 525400bf-7fe4-afe6-d7b6-00000000001d |     TIMING | Include OVN bridge MAC address variables | ceph-2 | 0:00:00.536981 | 0.03s
2022-12-14 14:50:24.916597 | 525400bf-7fe4-afe6-d7b6-00000000001d |         OK | Include OVN bridge MAC address variables | compute-0
2022-12-14 14:50:24.917107 | 525400bf-7fe4-afe6-d7b6-00000000001d |     TIMING | Include OVN bridge MAC address variables | compute-0 | 0:00:00.538535 | 0.02s

PLAY [Render all_nodes data as group_vars for overcloud] ***********************
2022-12-14 14:50:24.961010 | 525400bf-7fe4-afe6-d7b6-000000000020 |       TASK | Render all_nodes data as group_vars for overcloud
2022-12-14 14:50:25.570005 | 525400bf-7fe4-afe6-d7b6-000000000020 |         OK | Render all_nodes data as group_vars for overcloud | ceph-0 -> localhost
[WARNING]: ('ceph-0 -> localhost', '525400bf-7fe4-afe6-d7b6-000000000020')
missing from stats

PLAY [Set all_nodes data as group_vars for overcloud] **************************
2022-12-14 14:50:25.603366 | 525400bf-7fe4-afe6-d7b6-000000000023 |       TASK | Set all_nodes data as group_vars for overcloud
2022-12-14 14:50:25.647080 | 525400bf-7fe4-afe6-d7b6-000000000023 |         OK | Set all_nodes data as group_vars for overcloud | ceph-0
2022-12-14 14:50:25.652343 | 525400bf-7fe4-afe6-d7b6-000000000023 |     TIMING | Set all_nodes data as group_vars for overcloud | ceph-0 | 0:00:01.273728 | 0.05s
2022-12-14 14:50:25.666058 | 525400bf-7fe4-afe6-d7b6-000000000023 |         OK | Set all_nodes data as group_vars for overcloud | ceph-1
2022-12-14 14:50:25.670365 | 525400bf-7fe4-afe6-d7b6-000000000023 |     TIMING | Set all_nodes data as group_vars for overcloud | ceph-1 | 0:00:01.291766 | 0.05s
2022-12-14 14:50:25.683926 | 525400bf-7fe4-afe6-d7b6-000000000023 |         OK | Set all_nodes data as group_vars for overcloud | ceph-2
2022-12-14 14:50:25.688197 | 525400bf-7fe4-afe6-d7b6-000000000023 |     TIMING | Set all_nodes data as group_vars for overcloud | ceph-2 | 0:00:01.309576 | 0.05s
2022-12-14 14:50:25.689417 | 525400bf-7fe4-afe6-d7b6-000000000023 |         OK | Set all_nodes data as group_vars for overcloud | compute-0
2022-12-14 14:50:25.689990 | 525400bf-7fe4-afe6-d7b6-000000000023 |     TIMING | Set all_nodes data as group_vars for overcloud | compute-0 | 0:00:01.311417 | 0.03s
2022-12-14 14:50:25.700923 | 525400bf-7fe4-afe6-d7b6-000000000023 |         OK | Set all_nodes data as group_vars for overcloud | controller-0
2022-12-14 14:50:25.701435 | 525400bf-7fe4-afe6-d7b6-000000000023 |     TIMING | Set all_nodes data as group_vars for overcloud | controller-0 | 0:00:01.322864 | 0.02s

PLAY [External upgrade step 0] *************************************************

PLAY [External upgrade step 1] *************************************************

PLAY [External upgrade step 2] *************************************************

PLAY [External deploy step 1] **************************************************
2022-12-14 14:50:26.810121 | 525400bf-7fe4-afe6-d7b6-000000000369 |       TASK | Container image prepare
2022-12-14 14:51:01.670469 | 525400bf-7fe4-afe6-d7b6-000000000369 |    CHANGED | Container image prepare | undercloud
2022-12-14 14:51:01.674450 | 525400bf-7fe4-afe6-d7b6-000000000369 |     TIMING | tripleo_container_image_prepare : Container image prepare | undercloud | 0:00:37.295848 | 34.86s

PLAY [External deploy step 2] **************************************************
2022-12-14 14:51:01.701387 | 525400bf-7fe4-afe6-d7b6-00000000039b |       TASK | Container image prepare
2022-12-14 14:51:01.725656 | 525400bf-7fe4-afe6-d7b6-00000000039b |    SKIPPED | Container image prepare | undercloud
2022-12-14 14:51:01.726964 | 525400bf-7fe4-afe6-d7b6-00000000039b |     TIMING | tripleo_container_image_prepare : Container image prepare | undercloud | 0:00:37.348374 | 0.03s

PLAY [External deploy step 3] **************************************************
2022-12-14 14:51:01.751335 | 525400bf-7fe4-afe6-d7b6-0000000003cd |       TASK | Container image prepare
2022-12-14 14:51:01.775877 | 525400bf-7fe4-afe6-d7b6-0000000003cd |    SKIPPED | Container image prepare | undercloud
2022-12-14 14:51:01.776716 | 525400bf-7fe4-afe6-d7b6-0000000003cd |     TIMING | tripleo_container_image_prepare : Container image prepare | undercloud | 0:00:37.398133 | 0.02s

PLAY [External deploy step 4] **************************************************
2022-12-14 14:51:01.801947 | 525400bf-7fe4-afe6-d7b6-0000000003ff |       TASK | Container image prepare
2022-12-14 14:51:01.837332 | 525400bf-7fe4-afe6-d7b6-0000000003ff |    SKIPPED | Container image prepare | undercloud
2022-12-14 14:51:01.838983 | 525400bf-7fe4-afe6-d7b6-0000000003ff |     TIMING | tripleo_container_image_prepare : Container image prepare | undercloud | 0:00:37.460380 | 0.04s

PLAY [External deploy step 5] **************************************************
2022-12-14 14:51:01.869186 | 525400bf-7fe4-afe6-d7b6-000000000431 |       TASK | Container image prepare
2022-12-14 14:51:01.894514 | 525400bf-7fe4-afe6-d7b6-000000000431 |    SKIPPED | Container image prepare | undercloud
2022-12-14 14:51:01.895627 | 525400bf-7fe4-afe6-d7b6-000000000431 |     TIMING | tripleo_container_image_prepare : Container image prepare | undercloud | 0:00:37.517040 | 0.03s

PLAY RECAP *********************************************************************
ceph-0                     : ok=5    changed=0    unreachable=0    failed=0    skipped=0    rescued=0    ignored=1   
ceph-1                     : ok=4    changed=0    unreachable=0    failed=0    skipped=0    rescued=0    ignored=1   
ceph-2                     : ok=4    changed=0    unreachable=0    failed=0    skipped=0    rescued=0    ignored=1   
compute-0                  : ok=4    changed=0    unreachable=0    failed=0    skipped=0    rescued=0    ignored=1   
controller-0               : ok=4    changed=0    unreachable=0    failed=0    skipped=0    rescued=0    ignored=1   
undercloud                 : ok=4    changed=1    unreachable=0    failed=0    skipped=4    rescued=0    ignored=1   
2022-12-14 14:51:01.911929 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Summary Information ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2022-12-14 14:51:01.912261 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Total Tasks: 10         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2022-12-14 14:51:01.912547 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Elapsed Time: 0:00:37.533978 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2022-12-14 14:51:01.912825 |                                 UUID |       Info |       Host |   Task Name |   Run Time
2022-12-14 14:51:01.913109 | 525400bf-7fe4-afe6-d7b6-000000000369 |    SUMMARY | undercloud | tripleo_container_image_prepare : Container image prepare | 34.86s
2022-12-14 14:51:01.913440 | 525400bf-7fe4-afe6-d7b6-000000000019 |    SUMMARY | undercloud | ansible.builtin.include_vars | 0.12s
2022-12-14 14:51:01.913739 | 525400bf-7fe4-afe6-d7b6-000000000019 |    SUMMARY | controller-0 | ansible.builtin.include_vars | 0.10s
2022-12-14 14:51:01.914048 | 525400bf-7fe4-afe6-d7b6-000000000019 |    SUMMARY |     ceph-0 | ansible.builtin.include_vars | 0.09s
2022-12-14 14:51:01.914353 | 525400bf-7fe4-afe6-d7b6-000000000019 |    SUMMARY |     ceph-1 | ansible.builtin.include_vars | 0.09s
2022-12-14 14:51:01.914621 | 525400bf-7fe4-afe6-d7b6-000000000023 |    SUMMARY |     ceph-1 | Set all_nodes data as group_vars for overcloud | 0.05s
2022-12-14 14:51:01.914920 | 525400bf-7fe4-afe6-d7b6-000000000023 |    SUMMARY |     ceph-0 | Set all_nodes data as group_vars for overcloud | 0.05s
2022-12-14 14:51:01.915205 | 525400bf-7fe4-afe6-d7b6-000000000023 |    SUMMARY |     ceph-2 | Set all_nodes data as group_vars for overcloud | 0.05s
2022-12-14 14:51:01.915492 | 525400bf-7fe4-afe6-d7b6-00000000001c |    SUMMARY |     ceph-1 | Include Service VIP vars | 0.04s
2022-12-14 14:51:01.915792 | 525400bf-7fe4-afe6-d7b6-00000000001c |    SUMMARY |     ceph-0 | Include Service VIP vars | 0.04s
2022-12-14 14:51:01.916102 | 525400bf-7fe4-afe6-d7b6-000000000019 |    SUMMARY |     ceph-2 | ansible.builtin.include_vars | 0.04s
2022-12-14 14:51:01.916425 | 525400bf-7fe4-afe6-d7b6-0000000003ff |    SUMMARY | undercloud | tripleo_container_image_prepare : Container image prepare | 0.04s
2022-12-14 14:51:01.916698 | 525400bf-7fe4-afe6-d7b6-00000000001d |    SUMMARY |     ceph-0 | Include OVN bridge MAC address variables | 0.04s
2022-12-14 14:51:01.916962 | 525400bf-7fe4-afe6-d7b6-00000000001d |    SUMMARY | controller-0 | Include OVN bridge MAC address variables | 0.04s
2022-12-14 14:51:01.917239 | 525400bf-7fe4-afe6-d7b6-00000000001d |    SUMMARY |     ceph-1 | Include OVN bridge MAC address variables | 0.03s
2022-12-14 14:51:01.917537 | 525400bf-7fe4-afe6-d7b6-00000000001d |    SUMMARY | undercloud | Include OVN bridge MAC address variables | 0.03s
2022-12-14 14:51:01.917796 | 525400bf-7fe4-afe6-d7b6-00000000001c |    SUMMARY | undercloud | Include Service VIP vars | 0.03s
2022-12-14 14:51:01.918124 | 525400bf-7fe4-afe6-d7b6-00000000001d |    SUMMARY |     ceph-2 | Include OVN bridge MAC address variables | 0.03s
2022-12-14 14:51:01.918421 | 525400bf-7fe4-afe6-d7b6-00000000001c |    SUMMARY | controller-0 | Include Service VIP vars | 0.03s
2022-12-14 14:51:01.918752 | 525400bf-7fe4-afe6-d7b6-00000000001c |    SUMMARY |  compute-0 | Include Service VIP vars | 0.03s
2022-12-14 14:51:01.919005 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ End Summary Information ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2022-12-14 14:51:02.124 145058 INFO tripleoclient.utils.utils [-] Temporary directory [ /tmp/tripleof80c6ck6 ] cleaned up
2022-12-14 14:51:02.124 145058 INFO tripleoclient.utils.utils [-] Ansible execution success. playbook: /home/stack/overcloud-deploy/overcloud/config-download/tripleo-multi-playbook.yaml
2022-12-14 14:51:02.161 145058 INFO tripleoclient.v1.overcloud_external_upgrade.ExternalUpgradeRun [-] Completed Overcloud External Upgrade Run.
2022-12-14 14:51:02.162 145058 INFO osc_lib.shell [-] END return value: None

Comment 14 errata-xmlrpc 2023-08-16 01:11:21 UTC
Since the problem described in this bug report should be
resolved in a recent advisory, it has been closed with a
resolution of ERRATA.

For information on the advisory (Release of components for Red Hat OpenStack Platform 17.1 (Wallaby)), and where to find the updated
files, follow the link below.

If the solution does not work for you, open a new bug report.

https://access.redhat.com/errata/RHEA-2023:4577


Note You need to log in before you can comment on or make changes to this bug.