diff --git a/README.rst b/README.rst index 992106335..5a8ff7a4e 100644 --- a/README.rst +++ b/README.rst @@ -374,8 +374,8 @@ to consume the entire disk, which may, or may not be desirable depending upon operational needs. This is dependent upon what base OS image you utilize, and if the support is included in that image or not. At present, the standard ubuntu cloud image includes cloud-init which will grow the -root partition, however the minimal image does not include the image, and -thus will not grow the root partition. +root partition, however the ubuntu-minimal image does not include cloud-init +and thus will not automatically grow the root partition. Due to the nature of the design, it would be relatively easy for a user to import automatic growth or reconfiguration steps either in the image to be diff --git a/scripts/test-bifrost.sh b/scripts/test-bifrost.sh index a69d568ac..1f59a9c07 100755 --- a/scripts/test-bifrost.sh +++ b/scripts/test-bifrost.sh @@ -35,8 +35,15 @@ ansible-playbook -vvvv -i inventory/localhost test-bifrost-create-vm.yaml export BIFROST_INVENTORY_SOURCE=/tmp/baremetal.csv # Execute the installation and VM startup test. +# NOTE(TheJulia): The variables defined on the command line are to +# drive the use of Cirros as the deployed operating system, and +# as such sets the test user to cirros, and writes a debian style +# interfaces file out to the configuration drive as cirros does +# not support the network_info.json format file placed in the +# configuration drive. ansible-playbook -vvvv -i inventory/bifrost_inventory.py test-bifrost-dynamic.yaml -e use_cirros=true -e testing_user=cirros -e write_interfaces_file=true EXITCODE=$? + if [ $EXITCODE != 0 ]; then echo "****************************" echo "Test failed. See logs folder"