summaryrefslogtreecommitdiffstats
path: root/docs/sections/services/ves-hv/running-insecure.rst
diff options
context:
space:
mode:
authordeen1985 <damian.nowak@nokia.com>2021-03-25 17:33:35 +0100
committerVijay Venkatesh Kumar <vv770d@att.com>2021-03-26 15:02:15 +0000
commit884dd3fa26d529982ac7e17c20bf6581b8283899 (patch)
tree037ee360d42bb5a58f060c93c2c3d50b1bb7d1f4 /docs/sections/services/ves-hv/running-insecure.rst
parent895f2dd01deed315412240418b2d00e02ee41a15 (diff)
[Docs] Update the HV-VES installations instructions
Update the HV-VES installations intructions - add standard CFY installation. Include optional installation without the TLS enabled. Change-Id: I3c33769025fbadddb547ca719a438574586a1c43 Signed-off-by: Damian Nowak <damian.nowak@nokia.com> Issue-ID: DCAEGEN2-2681 (cherry picked from commit de4f97807cb2c2bebb50e6db7dd06b1ffbe515a1)
Diffstat (limited to 'docs/sections/services/ves-hv/running-insecure.rst')
-rw-r--r--docs/sections/services/ves-hv/running-insecure.rst58
1 files changed, 0 insertions, 58 deletions
diff --git a/docs/sections/services/ves-hv/running-insecure.rst b/docs/sections/services/ves-hv/running-insecure.rst
deleted file mode 100644
index 8d366ac2..00000000
--- a/docs/sections/services/ves-hv/running-insecure.rst
+++ /dev/null
@@ -1,58 +0,0 @@
-.. This work is licensed under a Creative Commons Attribution 4.0 International License.
-.. http://creativecommons.org/licenses/by/4.0
-
-.. _running_insecure:
-
-Running insecure HV-VES in test environments
-============================================
-
-HV-VES application is configured by default to use TLS/SSL encryption on TCP connection. However it is posible to turn off TLS/SSL authorization by overriding Cloudify blueprint inputs.
-
-
-Accessing bootstrap container with Kubernetes command line tool
----------------------------------------------------------------
-
-To find bootstrap pod, execute the following command:
-
-::
-
- kubectl -n <onap namespace> get pods | grep bootstrap
-
-To run command line in bootstrap pod, execute:
-
-::
-
- kubectl -n <onap namespace> exec -it <bootstrap-pod-name> bash
-
-
-Disable TLS/SSL by overriding Cloudify blueprint inputs
--------------------------------------------------------
-
-1. If You have a running HV-VES instance, uninstall HV-VES and delete current deployment:
-
-::
-
- cfy executions start -d hv-ves uninstall
- cfy deployments delete hv-ves
-
-2. Create new deployment with inputs from yaml file and override 'security_ssl_disable' value:
-
-::
-
- cfy deployments create -b hv-ves -i inputs/k8s-hv_ves-inputs.yaml -i security_ssl_disable=True hv-ves
-
-To verify inputs, You can execute:
-
-::
-
- cfy deployments inputs hv-ves
-
-3. Install HV-VES deployment:
-
-::
-
- cfy executions start -d hv-ves install
-
-
-
-