blob: 1bd0ba1f077802d3ca10bd5e3fe6a8443f252df7 [file] [log] [blame]
Jakub Dudyczf344afa2019-03-25 16:04:58 +01001#!/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
20export WORKSPACE=$(git rev-parse --show-toplevel)
Filip Krzywkaca7b7822019-04-02 13:03:56 +020021export ROBOT_VARIABLES="--pythonpath ${WORKSPACE}/tests/dcaegen2-collectors-hv-ves/testcases/libraries --noncritical non-critical"
Jakub Dudyczf344afa2019-03-25 16:04:58 +010022
23export JAVA_OPTS="-Dio.netty.leakDetection.level=paranoid"
24export CONSUL_HOST="consul-server"
25export CONFIG_BINDING_SERVICE="config-binding-service"
kjaniak41b81192020-01-23 20:38:41 +010026export CONFIG_BINDING_SERVICE_SERVICE_PORT="10000"
Jakub Dudyczf344afa2019-03-25 16:04:58 +010027
kjaniak605be8e2019-04-23 16:11:37 +020028export ONAP_NEXUS_REGISTRY="nexus3.onap.org:10001"
kjaniak41b81192020-01-23 20:38:41 +010029export DOCKER_REGISTRY=${ONAP_NEXUS_REGISTRY}
30export DOCKER_REGISTRY_PREFIX="${DOCKER_REGISTRY}/"
kjaniak605be8e2019-04-23 16:11:37 +020031
32export KAFKA_IMAGE_FULL_NAME="${ONAP_NEXUS_REGISTRY}/onap/dmaap/kafka111:0.0.6"
Piotr Jaszczyk7e09dc72019-05-09 15:50:19 +020033export ZOOKEEPER_IMAGE_FULL_NAME="${ONAP_NEXUS_REGISTRY}/onap/dmaap/zookeeper:4.0.0"
kjaniak605be8e2019-04-23 16:11:37 +020034
Piotr Jaszczyk7e09dc72019-05-09 15:50:19 +020035export CONTAINERS_NETWORK="hv-ves-${RANDOM}"
Jakub Dudyczf344afa2019-03-25 16:04:58 +010036export HV_VES_SERVICE_NAME="hv-ves-collector"
37export UNENCRYPTED_HV_VES_SERVICE_NAME="unencrypted-hv-ves-collector"
38
39export HV_VES_GROUP_ID="org.onap.dcaegen2.collectors.hv-ves"
40export HV_VES_HOSTNAME="dcae-hv-ves-collector"
41export HV_VES_COLLECTOR_NAMESPACE="onap"
Filip Krzywka4d4b2912019-04-02 09:04:46 +020042export HV_VES_HEALTHCHECK_CMD="curl --request GET --fail --silent --show-error localhost:6060/health/ready && nc -vz localhost 6061"
Jakub Dudyczf344afa2019-03-25 16:04:58 +010043export HV_VES_VERSION="latest"
44export HV_VES_IMAGE="hv-collector-main"
45export DCAE_APP_SIMULATOR_IMAGE="hv-collector-dcae-app-simulator"
46export XNF_SIMULATOR_IMAGE="hv-ves-collector-xnf-simulator"