Jakub Dudycz | f344afa | 2019-03-25 16:04:58 +0100 | [diff] [blame] | 1 | #!/usr/bin/env bash |
| 2 | # ============LICENSE_START======================================================= |
| 3 | # csit-dcaegen2-collectors-hv-ves |
| 4 | # ================================================================================ |
| 5 | # Copyright (C) 2019 NOKIA |
| 6 | # ================================================================================ |
| 7 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 8 | # you may not use this file except in compliance with the License. |
| 9 | # You may obtain a copy of the License at |
| 10 | # |
| 11 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | # |
| 13 | # Unless required by applicable law or agreed to in writing, software |
| 14 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 15 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | # See the License for the specific language governing permissions and |
| 17 | # limitations under the License. |
| 18 | # ============LICENSE_END========================================================= |
| 19 | |
| 20 | # using WORKSPACE variable defined in run-csit.sh |
Filip Krzywka | ca7b782 | 2019-04-02 13:03:56 +0200 | [diff] [blame] | 21 | export ROBOT_VARIABLES="--pythonpath ${WORKSPACE}/tests/dcaegen2-collectors-hv-ves/testcases/libraries --noncritical non-critical" |
Jakub Dudycz | f344afa | 2019-03-25 16:04:58 +0100 | [diff] [blame] | 22 | |
| 23 | export JAVA_OPTS="-Dio.netty.leakDetection.level=paranoid" |
| 24 | export CONSUL_HOST="consul-server" |
| 25 | export CONFIG_BINDING_SERVICE="config-binding-service" |
| 26 | |
kjaniak | 605be8e | 2019-04-23 16:11:37 +0200 | [diff] [blame^] | 27 | export ONAP_NEXUS_REGISTRY="nexus3.onap.org:10001" |
| 28 | export DOCKER_REGISTRY=${ONAP_NEXUS_REGISTRY} |
Jakub Dudycz | f344afa | 2019-03-25 16:04:58 +0100 | [diff] [blame] | 29 | export DOCKER_REGISTRY_PREFIX="${DOCKER_REGISTRY}/" |
kjaniak | 605be8e | 2019-04-23 16:11:37 +0200 | [diff] [blame^] | 30 | |
| 31 | export KAFKA_IMAGE_FULL_NAME="${DOCKER_REGISTRY_PREFIX}onap/dmaap/kafka111:0.0.6" |
| 32 | export ZOOKEEPER_IMAGE_FULL_NAME="${DOCKER_REGISTRY_PREFIX}onap/dmaap/zookeeper:4.0.0" |
| 33 | |
Jakub Dudycz | f344afa | 2019-03-25 16:04:58 +0100 | [diff] [blame] | 34 | export CONTAINERS_NETWORK="hv-ves-default" |
| 35 | export HV_VES_SERVICE_NAME="hv-ves-collector" |
| 36 | export UNENCRYPTED_HV_VES_SERVICE_NAME="unencrypted-hv-ves-collector" |
| 37 | |
| 38 | export HV_VES_GROUP_ID="org.onap.dcaegen2.collectors.hv-ves" |
| 39 | export HV_VES_HOSTNAME="dcae-hv-ves-collector" |
| 40 | export HV_VES_COLLECTOR_NAMESPACE="onap" |
Filip Krzywka | 4d4b291 | 2019-04-02 09:04:46 +0200 | [diff] [blame] | 41 | export HV_VES_HEALTHCHECK_CMD="curl --request GET --fail --silent --show-error localhost:6060/health/ready && nc -vz localhost 6061" |
Jakub Dudycz | f344afa | 2019-03-25 16:04:58 +0100 | [diff] [blame] | 42 | export HV_VES_VERSION="1.1-SNAPSHOT" |
| 43 | export HV_VES_IMAGE="hv-collector-main" |
| 44 | export DCAE_APP_SIMULATOR_IMAGE="hv-collector-dcae-app-simulator" |
| 45 | export XNF_SIMULATOR_IMAGE="hv-ves-collector-xnf-simulator" |
| 46 | |
| 47 | |