diff options
author | 2022-10-26 13:49:38 -0400 | |
---|---|---|
committer | 2022-10-26 13:50:12 -0400 | |
commit | 39479a850807e840ff08d1fcf4b01a04ba334e05 (patch) | |
tree | 2c8b20629a4f36c5efba7a61510bce3669b736d7 /docs/sections/services/tcagen2-docker | |
parent | dcfec1a95f0a4f605ac64833b59e39a0b584daa9 (diff) |
DCAE Kohn rls note updates
Third pass
Removed all cloudify install steps
+ Misc fixes for issues noted on
https://gerrit.onap.org/r/c/dcaegen2/+/131680
Change-Id: I825717d7ef42cc7b008c613956ca20b8393f5366
Signed-off-by: Vijay Venkatesh Kumar <vv770d@att.com>
Issue-ID: DCAEGEN2-3236
Signed-off-by: Vijay Venkatesh Kumar <vv770d@att.com>
Diffstat (limited to 'docs/sections/services/tcagen2-docker')
-rw-r--r-- | docs/sections/services/tcagen2-docker/installation.rst | 79 |
1 files changed, 0 insertions, 79 deletions
diff --git a/docs/sections/services/tcagen2-docker/installation.rst b/docs/sections/services/tcagen2-docker/installation.rst deleted file mode 100644 index 450c7037..00000000 --- a/docs/sections/services/tcagen2-docker/installation.rst +++ /dev/null @@ -1,79 +0,0 @@ -.. This work is licensed under a Creative Commons Attribution 4.0 International License. -.. http://creativecommons.org/licenses/by/4.0 -.. _tcagen2-installation: - - -Installation -============ - -TCA-gen2 is a microservice that will be configured and instantiated through Cloudify Manager.TCA-gen2 will be deployed by DCAE deployment among the bootstrapped services. This is more to facilitate automated deployment of ONAP regression test cases required services. During instantiation, the TCA-gen2 will fetch its configuration through the Config Binding Service. Steps to deploy using the CLI tool are shown below. - -Deployment Prerequisite/dependencies -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - - - DCAE and DMaaP pods should be up and running. - - MongoDB should be up and running - - Make sure that cfy is installed and configured to work with the Cloudify deployment. - -Deployment steps -^^^^^^^^^^^^^^^^ - -Following are steps if manual deployment/undeployment is required. Steps to deploy are below - - -Enter the Cloudify Manager kuberenetes pod - - .. note:: - For doing this, follow the below steps - - * First get the bootstrap pod name by running run this: kubectl get pods -n onap | grep bootstrap - * Then login to bootstrap pod by running this: kubectl exec -it <bootstrap pod> bash -n onap - - - Tca-gen2 blueprint directory (/blueprints/k8s-tcagen2.yaml). The blueprint is also maintained in gerrit and can be downloaded from https://git.onap.org/dcaegen2/platform/blueprints/tree/blueprints/k8s-tcagen2.yaml - - - Create input file required for deployment - - Configuration of the service consists of generating an inputs file (YAML) which will be used as part of the - Cloudify install. The tca-gen2 blueprints was designed with known defaults for the majority of the fields. - - Below you will find examples of fields which can be configured, and some of the fields - which must be configured. An input file is loaded into bootstrap container (/inputs/k8s-tcagen2-inputs.yaml). - - - .. csv-table:: - :widths: auto - :delim: ; - :header: Property , Sample Value , Description , Required - - tca_handle_in_subscribe_url ; http://message-router:3904/events/unauthenticated.TCAGEN2_OUTPUT/; DMaap topic to publish CL event output ; No - tca_handle_in_subscribe_url ; http://message-router:3904/events/unauthenticated.VES_MEASUREMENT_OUTPUT/; DMaap topic to subscribe VES measurement feeds ; No - tag_version ; nexus3.onap.org:10001/onap/org.onap.dcaegen2.analytics.tca-gen2.dcae-analytics-tca-web:1.0.1 ; The tag of the Docker image will be used when deploying the tca-gen2. ; No - - Example inputs.yaml - - .. code-block:: yaml - - tag_version: nexus3.onap.org:10001/onap/org.onap.dcaegen2.analytics.tca-gen2.dcae-analytics-tca-web:1.0.1 - tca_handle_in_subscribe_url: "http://message-router:3904/events/unauthenticated.VES_MEASUREMENT_OUTPUT/" - tca_handle_out_publish_url: "http://message-router:3904/events/unauthenticated.TCAGEN2_OUTPUT/" - - - - Create deployment - - .. code-block:: bash - - cfy install --blueprint-id tcagen2 --deployment-id tcagen2 -i /inputs/k8s-tcagen2-inputs.yaml /blueprints/k8s-tcagen2.yaml - - - -To undeploy TCA-gen2, steps are shown below - -- Uninstall running TCA-gen2 and delete deployment - .. code-block:: bash - - cfy uninstall tcagen2 -- Delete blueprint - .. code-block:: bash - - cfy blueprints delete tcagen2 - |