summaryrefslogtreecommitdiffstats
path: root/docs/sections/services/tca-cdap/installation.rst
diff options
context:
space:
mode:
authorVijay VK <vv770d@att.com>2019-05-22 22:10:29 +0100
committerVENKATESH KUMAR <vv770d@att.com>2019-05-22 23:01:13 -0400
commitf9e4344e9c9834face106b6c153ede020ff5410f (patch)
tree84250de8fcffc70275664bf4316ed2eafc280e13 /docs/sections/services/tca-cdap/installation.rst
parenteb9b422dc1b980e9a9128ab0e8fece20653f8279 (diff)
dcae r4 doc updates4.0.0-ONAP
Change-Id: I341f10a9eace4facac5aec3a3ff56cb89ef005e8 Signed-off-by: VENKATESH KUMAR <vv770d@att.com> Issue-ID: DCAEGEN2-1505 Signed-off-by: VENKATESH KUMAR <vv770d@att.com>
Diffstat (limited to 'docs/sections/services/tca-cdap/installation.rst')
-rw-r--r--docs/sections/services/tca-cdap/installation.rst51
1 files changed, 51 insertions, 0 deletions
diff --git a/docs/sections/services/tca-cdap/installation.rst b/docs/sections/services/tca-cdap/installation.rst
new file mode 100644
index 00000000..84b4d1e6
--- /dev/null
+++ b/docs/sections/services/tca-cdap/installation.rst
@@ -0,0 +1,51 @@
+Installation
+============
+
+TCA will be deployed by DCAE deployment among the bootstrapped services. This is more to facilitate automated deployment of ONAP regression test cases required services.
+
+As TCA jar is packaged into docker container, the container can be deployer standalone or via Cloudify Blueprint.
+
+
+
+Following are steps if manual deployment/undeployment required.
+
+Steps to deploy are shown below
+
+- Transfer blueprint component file in DCAE bootstrap POD under /blueprints directory. TCA Blueprint can be found under /blueprint directory. Same is also available on gerrit https://git.onap.org/dcaegen2/platform/blueprints/tree/blueprints/k8s-tca.yaml-template
+
+- Modify blueprint inputs file in DCAE bootstrap POD under /inputs directory. Copy this file to / and update as necessary.
+
+
+- Enter the Bootstrap POD
+- Validate blueprint
+ .. code-block:: bash
+
+ cfy blueprints validate /blueprints/k8s-tca.yaml
+- Upload validated blueprint
+ .. code-block:: bash
+
+
+ cfy blueprints upload -b tca /blueprints/k8s-tca.yaml
+- Create deployment
+ .. code-block:: bash
+
+
+ cfy deployments create -b tca -i /k8s-tca-input.yaml tca
+- Deploy blueprint
+ .. code-block:: bash
+
+
+ cfy executions start -d tca install
+
+To undeploy TCA, steps are shown below
+
+- Uninstall running TCA and delete deployment
+ .. code-block:: bash
+
+
+ cfy uninstall tca
+- Delete blueprint
+ .. code-block:: bash
+
+
+ cfy blueprints delete tca \ No newline at end of file