blob: 85445ec592539f03a406f50717438e5f7bf28366 [file] [log] [blame]
BjornMagnussonXA52bcf1e2020-09-07 14:06:35 +02001#!/bin/bash
2
3# ============LICENSE_START===============================================
4# Copyright (C) 2020 Nordix Foundation. All rights reserved.
5# ========================================================================
6# Licensed under the Apache License, Version 2.0 (the "License");
7# you may not use this file except in compliance with the License.
8# You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an "AS IS" BASIS,
14# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
17# ============LICENSE_END=================================================
18#
19
BjornMagnussonXAa8a30622020-11-12 11:03:10 +010020#Profile for guilin release
21TEST_ENV_PROFILE="ONAP-GUILIN"
22
BjornMagnussonXA52bcf1e2020-09-07 14:06:35 +020023# Set up the image and tags for the test. Do not add the image tag to the image names.
24
25# NOTE: A env var for each container is created by the test script.
26# This var will point to the local or remote var depending on how
27# the test script is started. The name format is <container-name>_IMAGE, ie with 'LOCAL' or 'REMOTE'.
28
BjornMagnussonXAd8d05292020-10-02 10:54:51 +020029# Tag for guilin branch
BjornMagnussonXA52bcf1e2020-09-07 14:06:35 +020030# Remote Policy Agent image and tag
31POLICY_AGENT_REMOTE_IMAGE="nexus3.onap.org:10003/onap/ccsdk-oran-a1policymanagementservice"
BjornMagnussonXAa8a30622020-11-12 11:03:10 +010032POLICY_AGENT_REMOTE_IMAGE_TAG="1.0.2-SNAPSHOT"
BjornMagnussonXA52bcf1e2020-09-07 14:06:35 +020033
34
BjornMagnussonXA52bcf1e2020-09-07 14:06:35 +020035# Control Panel remote image and tag
36CONTROL_PANEL_REMOTE_IMAGE="nexus3.o-ran-sc.org:10004/o-ran-sc/nonrtric-controlpanel"
37CONTROL_PANEL_REMOTE_IMAGE_TAG="2.0.0"
38
BjornMagnussonXAd8d05292020-10-02 10:54:51 +020039# Tag for guilin branch
BjornMagnussonXA52bcf1e2020-09-07 14:06:35 +020040# SDNC A1 Controller remote image and tag
41SDNC_A1_CONTROLLER_REMOTE_IMAGE="nexus3.onap.org:10003/onap/sdnc-image"
BjornMagnussonXAa8a30622020-11-12 11:03:10 +010042SDNC_A1_CONTROLLER_REMOTE_IMAGE_TAG="2.0.3-STAGING-latest"
BjornMagnussonXA52bcf1e2020-09-07 14:06:35 +020043
44
45#SDNC DB remote image and tag
46SDNC_DB_REMOTE_IMAGE="mysql/mysql-server"
47SDNC_DB_REMOTE_IMAGE_TAG="5.6"
48#No local image for DB, remote image always used
49
50
BjornMagnussonXA52bcf1e2020-09-07 14:06:35 +020051# Near RT RIC Simulator remote image and tag
52RIC_SIM_REMOTE_IMAGE="nexus3.o-ran-sc.org:10004/o-ran-sc/a1-simulator"
53RIC_SIM_REMOTE_IMAGE_TAG="2.0.0"
54
55
56#Consul remote image and tag
57CONSUL_REMOTE_IMAGE="consul"
58CONSUL_REMOTE_IMAGE_TAG="1.7.2"
59#No local image for Consul, remote image always used
60
61
62#CBS remote image and tag
63CBS_REMOTE_IMAGE="nexus3.onap.org:10001/onap/org.onap.dcaegen2.platform.configbinding.app-app"
BjornMagnussonXA52bcf1e2020-09-07 14:06:35 +020064CBS_REMOTE_IMAGE_TAG="2.3.0"
65#No local image for CBS, remote image always used
66
67
68#MR stub image and tag
69MRSTUB_LOCAL_IMAGE="mrstub"
70MRSTUB_LOCAL_IMAGE_TAG="latest"
71#No remote image for MR stub, local image always used
72
73#Callback receiver image and tag
74CR_LOCAL_IMAGE="callback-receiver"
75CR_LOCAL_IMAGE_TAG="latest"
76#No remote image for CR, local image always used
77
78# Common env var for auto-test. Vars used by docker-compose need to be exported
79export DOCKER_SIM_NWNAME="nonrtric-docker-net" # Name of docker private network
80
81export POLICY_AGENT_EXTERNAL_PORT=8081 # Policy Agent container external port (host -> container)
82export POLICY_AGENT_INTERNAL_PORT=8081 # Policy Agent container internal port (container -> container)
83export POLICY_AGENT_EXTERNAL_SECURE_PORT=8433 # Policy Agent container external secure port (host -> container)
84export POLICY_AGENT_INTERNAL_SECURE_PORT=8433 # Policy Agent container internal secure port (container -> container)
85
86export POLICY_AGENT_APP_NAME="policy-agent" # Name for Policy Agent container
87POLICY_AGENT_LOGPATH="/var/log/policy-agent/application.log" # Path the application log in the Policy Agent container
88export POLICY_AGENT_APP_NAME_ALIAS="policy-agent-container" # Alias name, name used by the control panel
89
90export MR_EXTERNAL_PORT=3905 # MR stub container external port (host -> container)
91export MR_INTERNAL_PORT=3905 # MR stub container internal port (container -> container)
92export MR_EXTERNAL_SECURE_PORT=3906 # MR stub container external secure port (host -> container)
93export MR_INTERNAL_SECURE_PORT=3906 # MR stub container internal secure port (container -> container)
94export MR_APP_NAME="message-router" # Name for the MR
95export MR_READ_URL="/events/A1-POLICY-AGENT-READ/users/policy-agent?timeout=15000&limit=100" # Path to read messages from MR
96export MR_WRITE_URL="/events/A1-POLICY-AGENT-WRITE" # Path write messages to MR
97
98export CR_EXTERNAL_PORT=8090 # Callback receiver container external port (host -> container)
99export CR_INTERNAL_PORT=8090 # Callback receiver container internal port (container -> container)
100export CR_EXTERNAL_SECURE_PORT=8091 # Callback receiver container external secure port (host -> container)
101export CR_INTERNAL_SECURE_PORT=8091 # Callback receiver container internal secure port (container -> container)
102export CR_APP_NAME="callback-receiver" # Name for the Callback receiver
BjornMagnussonXAa8a30622020-11-12 11:03:10 +0100103export CR_APP_CALLBACK="/callbacks" # Url for callbacks
BjornMagnussonXA52bcf1e2020-09-07 14:06:35 +0200104
105export CONSUL_HOST="consul-server" # Host name of consul
106export CONSUL_EXTERNAL_PORT=8500 # Consul container external port (host -> container)
107export CONSUL_INTERNAL_PORT=8500 # Consul container internal port (container -> container)
108export CONSUL_APP_NAME="polman-consul" # Name for consul container
109
110export CBS_APP_NAME="polman-cbs" # Name for CBS container
111export CBS_EXTERNAL_PORT=10000 # CBS container external port (host -> container)
112export CBS_INTERNAL_PORT=10000 # CBS container internal port (container -> container)
113export CONFIG_BINDING_SERVICE="config-binding-service" # Host name of CBS
114
115export RIC_SIM_BASE="g" # Base name of the RIC Simulator container, shall be the group code
116 # Note, a prefix is added to each container name by the .env file in the 'ric' dir
117RIC_SIM_PREFIX="ricsim" # Prefix added to ric container name, added in the .env file in the 'ric' dir
118 # This prefix can be changed from the command line
119export RIC_SIM_INTERNAL_PORT=8085 # RIC Simulator container internal port (container -> container).
120 # (external ports allocated by docker)
121export RIC_SIM_INTERNAL_SECURE_PORT=8185 # RIC Simulator container internal secure port (container -> container).
122 # (external ports allocated by docker)
123
124export SDNC_APP_NAME="a1-controller" # Name of the SNDC A1 Controller container
125export SDNC_EXTERNAL_PORT=8282 # SNDC A1 Controller container external port (host -> container)
126export SDNC_INTERNAL_PORT=8181 # SNDC A1 Controller container internal port (container -> container)
127export SDNC_EXTERNAL_SECURE_PORT=8443 # SNDC A1 Controller container external securee port (host -> container)
128export SDNC_INTERNAL_SECURE_PORT=8443 # SNDC A1 Controller container internal secure port (container -> container)
129export SDNC_DB_APP_NAME="sdnc-db" # Name of the SDNC DB container
BjornMagnussonXA7330ced2020-09-16 10:16:45 +0200130export SDNC_A1_TRUSTSTORE_PASSWORD="a1adapter" # SDNC truststore password
BjornMagnussonXA52bcf1e2020-09-07 14:06:35 +0200131SDNC_USER="admin" # SDNC username
132SDNC_PWD="Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U" # SNDC PWD
133SDNC_API_URL="/restconf/operations/A1-ADAPTER-API:" # Base url path for SNDC API
134SDNC_ALIVE_URL="/apidoc/explorer/" # Base url path for SNDC API docs (for alive check)
135SDNC_KARAF_LOG="/opt/opendaylight/data/log/karaf.log" # Path to karaf log
136
BjornMagnussonXA52bcf1e2020-09-07 14:06:35 +0200137
138export CONTROL_PANEL_APP_NAME="control-panel" # Name of the Control Panel container
139export CONTROL_PANEL_EXTERNAL_PORT=8080 # Control Panel container external port (host -> container)
140export CONTROL_PANEL_INTERNAL_PORT=8080 # Control Panel container external port (host -> container)
141CONTROL_PANEL_LOGPATH="/logs/nonrtric-controlpanel.log" # Path the application log in the Control Panel container
142
143UUID="" # UUID used as prefix to the policy id to simulate a real UUID
144 # Testscript need to set the UUID to use other this empty prefix is used
145
146RESTBASE="http://localhost:"$POLICY_AGENT_EXTERNAL_PORT # Base url to the Agent NB REST interface
147RESTBASE_SECURE="https://localhost:"$POLICY_AGENT_EXTERNAL_SECURE_PORT # Base url to the secure Agent NB REST interface
148DMAAPBASE="http://localhost:"$MR_EXTERNAL_PORT # Base url to the Dmaap adapter, http
149DMAAPBASE_SECURE="https://localhost:"$MR_EXTERNAL_SECURE_PORT # Base url to the Dmaap adapter, https
150ADAPTER=$RESTBASE # Adapter holds the address the agent R-APP interface (REST OR DMAAP)
BjornMagnussonXA7330ced2020-09-16 10:16:45 +0200151 # The values of this var is swiched between the two base url when needed
BjornMagnussonXAa8a30622020-11-12 11:03:10 +0100152
153CR_RESTBASE="http://localhost:"$CR_EXTERNAL_PORT # Base url to the Callback receiver REST interface
154CR_RESTBASE_SECURE="https://localhost:"$CR_EXTERNAL_SECURE_PORT # Base url to the secure Callback receiver REST interface
155CR_ADAPTER=$CR_RESTBASE # Adapter holds the address the CR admin interface (REST only)
156 # The values of this var is swiched between the two base url when needed