[bifrost] add bifrost_deploy_verbosity parameter

With the parameter bifrost_deploy_verbosity it is possible
to set the verbosity of the bootstrap of Bifrost.

This makes it possible to reduce verbosity when running
/bifrost/playbooks/install.yaml if needed.

Change-Id: I5815220f2193a492ae7e1f63443075790ae7aaef
This commit is contained in:
Christian Berendt 2022-04-24 17:42:38 +02:00
parent 756792e512
commit ea5b4d7e26
4 changed files with 15 additions and 3 deletions

View File

@ -9,3 +9,5 @@ bifrost_deploy_tag: "{{ bifrost_tag }}"
bifrost_deploy_image_full: "{{ bifrost_deploy_image }}:{{ bifrost_deploy_tag }}"
bifrost_deploy_container_proxy: "{{ container_proxy }}"
bifrost_deploy_verbosity: "-vvvv"

View File

@ -18,7 +18,8 @@
command: >
docker exec bifrost_deploy
bash -c
'ansible-playbook -vvvv -i /bifrost/playbooks/inventory/target
'ansible-playbook {{ bifrost_deploy_verbosity }}
-i /bifrost/playbooks/inventory/target
/bifrost/playbooks/install.yaml -e @/etc/bifrost/bifrost.yml
-e @/etc/bifrost/dib.yml -e skip_package_install=true'

View File

@ -5,7 +5,8 @@
docker exec bifrost_deploy
bash -c 'export OS_CLOUD=bifrost &&
export BIFROST_INVENTORY_SOURCE=/etc/bifrost/servers.yml &&
ansible-playbook -vvvv -i /bifrost/playbooks/inventory/bifrost_inventory.py
ansible-playbook {{ bifrost_deploy_verbosity }}}
-i /bifrost/playbooks/inventory/bifrost_inventory.py
/bifrost/playbooks/enroll-dynamic.yaml -e @/etc/bifrost/bifrost.yml'
- name: Deploy physical servers with ironic
@ -14,5 +15,6 @@
docker exec bifrost_deploy
bash -c 'export OS_CLOUD=bifrost &&
export BIFROST_INVENTORY_SOURCE=/etc/bifrost/servers.yml &&
ansible-playbook -vvvv -i /bifrost/playbooks/inventory/bifrost_inventory.py
ansible-playbook {{ bifrost_deploy_verbosity }}
-i /bifrost/playbooks/inventory/bifrost_inventory.py
/bifrost/playbooks/deploy-dynamic.yaml -e @/etc/bifrost/bifrost.yml'

View File

@ -0,0 +1,7 @@
---
features:
- |
With the parameter ``bifrost_deploy_verbosity`` it is possible
to set the verbosity of the bootstrap of Bifrost.
By default ``-vvvv`` is set.