Add variable to bootstrap role to describe the test job action

This can be 'deploy', 'upgrade' or other actions passed via the
ACTION environment variable.

Change-Id: Ic769c0a0e9d79429cdeb1c4d20a6957f57a765a5
This commit is contained in:
Jonathan Rosser 2022-02-22 14:07:32 +00:00
parent 0269f18ef3
commit 9c2af697ea

View File

@ -17,6 +17,9 @@
# Scenario used to bootstrap the host
bootstrap_host_scenario: "{{ lookup('env','SCENARIO') | default('aio_lxc', true) }}"
#
# Action used (deploy, upgrade, ...)
bootstrap_host_action: "{{ lookup('env', 'ACTION') | default('deploy', true) }}"
#
# Boolean option to implement OpenStack-Ansible configuration for an AIO
# Switch to no for a multi-node configuration
bootstrap_host_aio_config: yes