2020-04-24 07:41:55 |
Mihai Plasoianu |
description |
When troubleshooting failed deployments, --start-at-task is a huge help. This is now broken, probably since this commit:
https://opendev.org/openstack/tripleo-heat-templates/commit/43dccb8e8f06aed9278b311c5eadfa4c423077e9
When starting after step 1, python_cmd is not set.
Manually setting it in the ansible task debugger as a workaround fixed it:
> task_vars['python_cmd'] = 'python2'
> redo |
When troubleshooting failed deployments, --start-at-task is a huge help. This is now broken, probably since this commit:
https://opendev.org/openstack/tripleo-heat-templates/commit/43dccb8e8f06aed9278b311c5eadfa4c423077e9
When starting after step 1, python_cmd is not set.
Manually setting it in the ansible task debugger as a workaround fixed it:
> task_vars['python_cmd'] = 'python2'
> redo
Env is train on centos7, but this is probably also an issue on master. |
|