diff options
Diffstat (limited to 'plans')
-rw-r--r-- | plans/dcaegen2-collectors-hv-ves/testsuites/docker-compose.yml | 2 | ||||
-rwxr-xr-x | plans/dcaegen2-collectors-hv-ves/testsuites/env.sh | 1 | ||||
-rw-r--r-- | plans/usecases/5G-bulkpm/README.txt | 12 |
3 files changed, 9 insertions, 6 deletions
diff --git a/plans/dcaegen2-collectors-hv-ves/testsuites/docker-compose.yml b/plans/dcaegen2-collectors-hv-ves/testsuites/docker-compose.yml index 4b184d38..6f5f2ee1 100644 --- a/plans/dcaegen2-collectors-hv-ves/testsuites/docker-compose.yml +++ b/plans/dcaegen2-collectors-hv-ves/testsuites/docker-compose.yml @@ -109,6 +109,7 @@ services: - HOSTNAME=${HV_VES_HOSTNAME} - CONSUL_HOST - CONFIG_BINDING_SERVICE + - CONFIG_BINDING_SERVICE_SERVICE_PORT healthcheck: interval: 10s timeout: 5s @@ -133,6 +134,7 @@ services: - HOSTNAME=${HV_VES_HOSTNAME} - CONSUL_HOST - CONFIG_BINDING_SERVICE + - CONFIG_BINDING_SERVICE_SERVICE_PORT healthcheck: interval: 10s timeout: 5s diff --git a/plans/dcaegen2-collectors-hv-ves/testsuites/env.sh b/plans/dcaegen2-collectors-hv-ves/testsuites/env.sh index 940c757f..e3e253b6 100755 --- a/plans/dcaegen2-collectors-hv-ves/testsuites/env.sh +++ b/plans/dcaegen2-collectors-hv-ves/testsuites/env.sh @@ -23,6 +23,7 @@ export ROBOT_VARIABLES="--pythonpath ${WORKSPACE}/tests/dcaegen2-collectors-hv-v export JAVA_OPTS="-Dio.netty.leakDetection.level=paranoid" export CONSUL_HOST="consul-server" export CONFIG_BINDING_SERVICE="config-binding-service" +export CONFIG_BINDING_SERVICE_SERVICE_PORT="10000" export ONAP_NEXUS_REGISTRY="nexus3.onap.org:10001" export DOCKER_REGISTRY=${ONAP_NEXUS_REGISTRY} diff --git a/plans/usecases/5G-bulkpm/README.txt b/plans/usecases/5G-bulkpm/README.txt index 1d0fc415..5bc82a24 100644 --- a/plans/usecases/5G-bulkpm/README.txt +++ b/plans/usecases/5G-bulkpm/README.txt @@ -2,7 +2,7 @@ By executing the below commands it will change the CSIT test from executing on a docker envirnoment to an ONAP one. ################################################################################################################### -1) Login to an ONAP instance,switch user and verify that the command kubectl executes before proceeding . +1) Login to an ONAP instance, switch user and verify that the command kubectl executes before proceeding . # sudo -s # kubectl get svc -n onap| grep dcae @@ -15,7 +15,7 @@ By executing the below commands it will change the CSIT test from executing on a # sudo chmod +x /usr/local/bin/docker-compose # docker-compose --version -4) Install the packages required for the RobotFramework. +4) Install the packages required for the RobotFramework. # apt install python-pip # sudo apt install python-pip virtualenv unzip sshuttle netcat libffi-dev libssl-dev # sudo pip install robotframework @@ -26,7 +26,7 @@ By executing the below commands it will change the CSIT test from executing on a # kubectl expose svc dcae-ves-collector --type=LoadBalancer --name=vesc -n onap service "vesc" exposed -6) Verify the Ves-collector is expose +6) Verify the Ves-collector is exposed # kubectl get svc -n onap | grep vesc vesc LoadBalancer 10.43.203.47 10.209.63.55 8080:31835/TCP 1m @@ -40,8 +40,8 @@ CSIT=FALSE 8) Excute the Bulk PM e2e csit. # ./run-csit.sh plans/usecases/5G-bulkpm/ - ---> Trobleshooting +--> Troubleshooting +-------------------- If the Test case "Verify Default Feed And File Consumer Subscription On Datarouter" is hanging, quit the test and execute the below Get the DR-PROV IP address # kubectl -n onap -o=wide get pods | grep dmaap-dr-prov | awk '{print $6}' @@ -49,7 +49,7 @@ Get the DR-PROV IP address Make sure there are no feeds # curl -k https://10.42.123.76:8443/internal/prov -If there is feeds delete them +If there are feeds delete them curl -X DELETE -H "Content-Type:application/vnd.att-dr.subscription" -H "X-ATT-DR-ON-BEHALF-OF:dradmin" -k https://10.42.123.76:8443/subs/XX Where XX is the number of the feeds in the previous command. |