Fix miscellaneous bugs found in VNF scaling guide

This patch addresses below mention issues,
* Fix missing articles in the sentences.
* Change the old link [1] present in the document referring Tacker
  TOSCA template to the desired link [2].
* Mix conventions used in the guide for the word "Tacker".
* Indent command console output.

[1] https://github.com/openstack/tacker/tree/master/samples/tosca-templates/vnfd
[2] https://opendev.org/openstack/tacker/src/branch/master/samples/tosca-templates/vnfd

Change-Id: Iec38f78772367035fa434eb61151f5f058b51887
Closes-Bug: #1903958
This commit is contained in:
Manpreet Kaur 2020-11-17 02:58:42 +00:00
parent b1a02ec7d3
commit efa9241cdf
1 changed files with 22 additions and 34 deletions

View File

@ -17,13 +17,13 @@
VNF scaling
===========
VNF resources in terms of CPU core and memory are hardcoded in VNFD template
through image flavor settings. This result in either provisioning VNF for
typical usage or for maximum usage. The former leads to service disruption
when load exceeds provisioned capacity. And the later leads to underutilized
resources and waste during normal system load. So tacker provides a
way to seamlessly scale the number of VNFs on demand either manually or
automatically.
VNF resources in terms of CPU core and memory are hardcoded in the VNFD
template through image flavor settings. This results in either provisioning
VNF for typical usage or for maximum usage. The former leads to service
disruption when the load exceeds provisioned capacity. And the latter leads
to underutilized resources and waste during normal system load. So Tacker
provides a way to seamlessly scale the number of VNFs on demand either
manually or automatically.
TOSCA schema for scaling policy
@ -70,28 +70,20 @@ Tacker defines TOSCA schema for the scaling policy as given below:
Sample TOSCA with scaling policy
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Following TOSCA snippet shows the scaling policy used in VNFD, in which vdu1
and vdu2 are already defined VDUs.
The following TOSCA snippet shows the scaling policy used in VNFD, in which
vdu1 and vdu2 are already defined VDUs.
.. code-block:: yaml
policies:
- sp1:
type: tosca.policies.tacker.Scaling
description: Simple VDU scaling
targets: [vdu1, vdu2]
properties:
min_instances: 1
max_instances: 3
default_instances: 2
increment: 1
Deploying scaling TOSCA template using Tacker
@ -100,11 +92,10 @@ Deploying scaling TOSCA template using Tacker
Once OpenStack/Devstack along with Tacker has been successfully installed,
deploy a sample scaling template from location given
below:
https://github.com/openstack/tacker/tree/master/samples/tosca-templates/vnfd
https://opendev.org/openstack/tacker/src/branch/master/samples/tosca-templates/vnfd
Refer the 'Getting Started' link below on how to create a VNFD and deploy a
VNF:
https://docs.openstack.org/tacker/latest/install/getting_started.html
How to create a VNFD and deploy a VNF refer to
:doc:`../install/getting_started`.
How to scale VNF using CLI
@ -114,10 +105,8 @@ Tacker provides following CLI for scaling.
.. code-block:: console
**openstack vnf scale --vnf-id <vnf-id>**
**--vnf-name <vnf name>**
**--scaling-policy-name <policy name>**
**--scaling-type <type>**
$ openstack vnf scale --vnf-id <vnf-id> --vnf-name <vnf name> \
--scaling-policy-name <policy name> --scaling-type <type>
Here,
@ -126,14 +115,13 @@ Here,
* vnf-id - scaling VNF id
* vnf-name - scaling VNF name
For example, to scale-out policy 'sp1' defined above, this cli could be used
as below:
For example, to scale-out policy 'sp1' defined above, this command could be
used as below:
.. code-block:: console
**openstack vnf scale --vnf-name sample-vnf**
**--scaling-policy-name sp1**
**--scaling-type out**
$ openstack vnf scale --vnf-name sample-vnf --scaling-policy-name sp1 \
--scaling-type out
How to scale VNF using REST API
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@ -146,7 +134,7 @@ with body
.. code-block:: json
**{"scale": { "type": "<type>", "policy" : "<scaling-policy-name>"}}**
{"scale": { "type": "<type>", "policy" : "<scaling-policy-name>"}}
Here,