Merge "Fix Kayobe overcloud introspection data save"

This commit is contained in:
Zuul 2020-03-19 11:03:20 +00:00 committed by Gerrit Code Review
commit 458e6a6424
2 changed files with 7 additions and 2 deletions

View File

@ -13,7 +13,6 @@
command: >
docker exec bifrost_deploy
bash -c '
export OS_TOKEN=fake-token &&
export BIFROST_INVENTORY_SOURCE=ironic &&
ansible baremetal
--connection local
@ -22,7 +21,7 @@
-e @/etc/bifrost/dib.yml
--limit {{ inventory_hostname }}
-m shell
-a "env OS_URL=http://localhost:5050 openstack baremetal introspection data save {% raw %}{{ inventory_hostname }}{% endraw %}"'
-a "env OS_CLOUD=bifrost-inspector openstack baremetal introspection data save {% raw %}{{ inventory_hostname }}{% endraw %}"'
register: save_result
changed_when: False
# Ignore errors, log a message later.

View File

@ -0,0 +1,6 @@
---
fixes:
- |
Fixes a bug where introspection data save would fail.
See `Story 2007326 <https://storyboard.openstack.org/#!/story/2007326>`_
for more details.