diff options
author | Filip Krzywka <filip.krzywka@nokia.com> | 2019-01-17 11:13:23 +0100 |
---|---|---|
committer | Filip Krzywka <filip.krzywka@nokia.com> | 2019-01-18 08:47:34 +0000 |
commit | e4dc8b6f672aa09c96b276d1db80e300d6ec36cf (patch) | |
tree | 719fb35bd5457d4ac07e0a5bb3541b24afadba6e /docs/sections/services/ves-hv/deployment.rst | |
parent | 142235dd389cf085a670aadcffdd9252ea1b69e2 (diff) |
Add horizontal scaling documentation [HV-VES]
Change-Id: I5cc79bb18840e093de1afbadfb74907730da7cea
Issue-ID: DCAEGEN2-1095
Signed-off-by: Filip Krzywka <filip.krzywka@nokia.com>
Diffstat (limited to 'docs/sections/services/ves-hv/deployment.rst')
-rw-r--r-- | docs/sections/services/ves-hv/deployment.rst | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/docs/sections/services/ves-hv/deployment.rst b/docs/sections/services/ves-hv/deployment.rst index 054523bb..9fdbceb1 100644 --- a/docs/sections/services/ves-hv/deployment.rst +++ b/docs/sections/services/ves-hv/deployment.rst @@ -82,6 +82,42 @@ These parameters can be configured either by passing command line option during by specifying environment variables named after command line option name rewritten using `UPPER_SNAKE_CASE` and prepended with `VESHV_` prefix e.g. `VESHV_LISTEN_PORT`. +Horizontal Scaling +================== + +Kubernetes command line tool (`kubectl`) is recommended for manual horizontal scaling of HV-VES Collector. + +To scale HV-VES deployment you need to determine its name and namespace in which it is deployed. +For default OOM deployment, HV-VES full deployment name is `deployment/dep-dcae-hv-ves-collector` and it is installed under `onap` namespace. + +1. If the namespace is unknown, execute the following command to determine possible namespaces. + +.. code-block:: bash + + kubectl get namespaces + +2. Find desired deployment (in case of huge output you can try final call in combination with `grep hv-ves` command). +You can also see current replicas amount under a corresponding column. + +.. code-block:: bash + + ONAP_NAMESPACE=onap + kubectl get --namespace ${ONAP_NAMESPACE} deployment + +3. To scale deployment execute: + +.. code-block:: bash + + DEPLOYMENT_NAME=deployment/dep-dcae-hv-ves-collector + DESIRED_REPLICAS_AMOUNT=5 + kubectl scale --namespace ${ONAP_NAMESPACE} ${DEPLOYMENT_NAME} --replicas=${DESIRED_REPLICAS_AMOUNT} + +Result: + +.. code-block:: bash + + kubectl get pods --namespace ${ONAP_NAMESPACE} --selector app=dcae-hv-ves-collector + Healthcheck =========== |