Fixed incorrect formatting of the TV developer guide code blocks

Some code blocks weren't formatted correctly, this patch fixes it.

Signed-off-by: Veronika Fisarova <vfisarov@redhat.com>
Change-Id: I9276ca5b226db8e60af70249627cbbf07c37ef8d
This commit is contained in:
Veronika Fisarova 2022-10-11 10:26:19 +02:00
parent 688b7f7da4
commit f9e2d6f933
1 changed files with 4 additions and 4 deletions

View File

@ -503,17 +503,17 @@ change the value without editing the yaml file!
Let's do that to test both success and failure cases.
This should succeed but saying the RAM requirement is 1 GB::
This should succeed but saying the RAM requirement is 1 GB:
.. code-block:: console
ansible-playbook -i /usr/bin/tripleo-ansible-inventory playbooks/undercloud-ram.yaml -e minimum_ram_gb=1
$ ansible-playbook -i /usr/bin/tripleo-ansible-inventory playbooks/undercloud-ram.yaml -e minimum_ram_gb=1
And this should fail by requiring much more RAM than is necessary::
And this should fail by requiring much more RAM than is necessary:
.. code-block:: console
ansible-playbook -i /usr/bin/tripleo-ansible-inventory playbooks/undercloud-ram.yaml -e minimum_ram_gb=128
$ ansible-playbook -i /usr/bin/tripleo-ansible-inventory playbooks/undercloud-ram.yaml -e minimum_ram_gb=128
(the actual values may be different in your configuration -- just make sure one
is low enough and the other too high)