Merge "Change scale-down example with compute instead of controller"

This commit is contained in:
Zuul
2021-07-01 12:40:42 +00:00
committed by Gerrit Code Review

View File

@@ -569,21 +569,19 @@ node being unprovisioned which contains the following:
* A YAML comment explaining the reason for making the node unprovisioned (optional) * A YAML comment explaining the reason for making the node unprovisioned (optional)
For example the following would remove ``overcloud-controller-1`` For example the following would remove ``overcloud-compute-1``
.. code-block:: yaml .. code-block:: yaml
- name: Controller - name: Compute
count: 2 count: 1
instances: instances:
- hostname: overcloud-controller-0 - hostname: overcloud-compute-0
name: node00 name: node10
- hostname: overcloud-controller-1 # Removed from deployment due to disk failure
name: node01
# Removed from cluster due to disk failure
provisioned: false provisioned: false
- hostname: overcloud-controller-2 - hostname: overcloud-compute-1
name: node02 name: node11
Then the delete command will be called with ``--baremetal-deployment`` Then the delete command will be called with ``--baremetal-deployment``
instead of passing node arguments:: instead of passing node arguments::
@@ -605,19 +603,18 @@ example
.. code-block:: yaml .. code-block:: yaml
- name: Controller - name: Compute
count: 3 count: 2
instances: instances:
- hostname: overcloud-controller-0 - hostname: overcloud-compute-0
name: node00 name: node10
- hostname: overcloud-controller-1 # Removed from deployment due to disk failure
name: node01
# Removed from cluster due to disk failure
provisioned: false provisioned: false
- hostname: overcloud-controller-2 - hostname: overcloud-compute-1
name: node02
- hostname: overcloud-controller-3
name: node11 name: node11
- hostname: overcloud-compute-2
name: node12
Unprovisioning All Nodes Unprovisioning All Nodes
^^^^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^