BjornMagnussonXA | 39ad50e | 2020-10-22 09:55:25 +0200 | [diff] [blame] | 1 | #!/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 | # |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 10 | # http://www.apache.org/licenses/LICENSE-2.0 |
BjornMagnussonXA | 39ad50e | 2020-10-22 09:55:25 +0200 | [diff] [blame] | 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 | # |
BjornMagnussonXA | 7b36db6 | 2020-11-23 10:57:57 +0100 | [diff] [blame] | 19 | #Profile for ONAP guilin release |
BjornMagnussonXA | 49f0e5a | 2020-11-08 22:41:39 +0100 | [diff] [blame] | 20 | TEST_ENV_PROFILE="ONAP-GUILIN" |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 21 | FLAVOUR="ONAP" |
BjornMagnussonXA | 89b64ab | 2020-12-16 09:21:01 +0100 | [diff] [blame] | 22 | |
| 23 | ######################################## |
| 24 | ## Nexus repo settings |
| 25 | ######################################## |
| 26 | |
| 27 | # Nexus repos for developed images |
BjornMagnussonXA | 7b36db6 | 2020-11-23 10:57:57 +0100 | [diff] [blame] | 28 | NEXUS_PROXY_REPO="nexus3.onap.org:10001/" |
BjornMagnussonXA | 89b64ab | 2020-12-16 09:21:01 +0100 | [diff] [blame] | 29 | NEXUS_RELEASE_REPO="nexus3.onap.org:10002/" |
| 30 | NEXUS_SNAPSHOT_REPO="nexus3.onap.org:10003/" |
| 31 | NEXUS_STAGING_REPO=$NEXUS_SNAPSHOT_REPO #staging repo not used in ONAP, using snapshot |
BjornMagnussonXA | 49f0e5a | 2020-11-08 22:41:39 +0100 | [diff] [blame] | 32 | |
BjornMagnussonXA | 89b64ab | 2020-12-16 09:21:01 +0100 | [diff] [blame] | 33 | # Nexus repos for images used by test (not developed by the project) |
| 34 | NEXUS_RELEASE_REPO_ORAN="nexus3.o-ran-sc.org:10002/" # Only for released ORAN images |
| 35 | NEXUS_RELEASE_REPO_ONAP=$NEXUS_RELEASE_REPO |
BjornMagnussonXA | 39ad50e | 2020-10-22 09:55:25 +0200 | [diff] [blame] | 36 | |
BjornMagnussonXA | 89b64ab | 2020-12-16 09:21:01 +0100 | [diff] [blame] | 37 | ######################################## |
| 38 | # Set up of image and tags for the test. |
| 39 | ######################################## |
BjornMagnussonXA | 39ad50e | 2020-10-22 09:55:25 +0200 | [diff] [blame] | 40 | |
BjornMagnussonXA | 89b64ab | 2020-12-16 09:21:01 +0100 | [diff] [blame] | 41 | # NOTE: One environment variable containing the image name and tag is create by the test script |
| 42 | # for each image from the env variables below. |
| 43 | # The variable is created by removing the suffix "_BASE" from the base image variable name. |
| 44 | # Example: POLICY_AGENT_IMAGE_BASE -> POLICY_AGENT_IMAGE |
| 45 | # This var will point to the local or remote image depending on cmd line arguments. |
| 46 | # In addition, the repo and the image tag version are selected from the list of image tags based on the cmd line argurment. |
| 47 | # For images built by the script, only tag #1 shall be specified |
| 48 | # For project images, only tag #1, #2, #3 and #4 shall be specified |
| 49 | # For ORAN images (non project), only tag #5 shall be specified |
| 50 | # For ONAP images (non project), only tag #6 shall be specified |
| 51 | # For all other images, only tag #7 shall be specified |
| 52 | # 1 XXX_LOCAL: local images: <image-name>:<local-tag> |
| 53 | # 2 XXX_REMOTE_SNAPSHOT: snapshot images: <snapshot-nexus-repo><image-name>:<snapshot-tag> |
| 54 | # 3 XXX_REMOTE: staging images: <staging-nexus-repo><image-name>:<staging-tag> |
| 55 | # 4 XXX_REMOTE_RELEASE: release images: <release-nexus-repo><image-name>:<release-tag> |
| 56 | # 5 XXX_REMOTE_RELEASE_ORAN: ORAN release images: <oran-release-nexus-repo><image-name>:<release-tag> |
| 57 | # 6 XXX_REMOTE_RELEASE_ONAP: ONAP release images: <onap-release-nexus-repo><image-name>:<release-tag> |
| 58 | # 7 XXX_PROXY: other images, not produced by the project: <proxy-nexus-repo><mage-name>:<proxy-tag> |
BjornMagnussonXA | 39ad50e | 2020-10-22 09:55:25 +0200 | [diff] [blame] | 59 | |
| 60 | |
BjornMagnussonXA | 89b64ab | 2020-12-16 09:21:01 +0100 | [diff] [blame] | 61 | # Policy Agent image and tags |
| 62 | POLICY_AGENT_IMAGE_BASE="onap/ccsdk-oran-a1policymanagementservice" |
| 63 | POLICY_AGENT_IMAGE_TAG_LOCAL="1.0.2-SNAPSHOT" |
| 64 | POLICY_AGENT_IMAGE_TAG_REMOTE_SNAPSHOT="1.0.2-SNAPSHOT" |
| 65 | POLICY_AGENT_IMAGE_TAG_REMOTE="1.0.2-SNAPSHOT" #Will use snapshot repo |
BjornMagnussonXA | 366e36a | 2021-01-27 11:48:56 +0100 | [diff] [blame] | 66 | POLICY_AGENT_IMAGE_TAG_REMOTE_RELEASE="1.0.2" |
BjornMagnussonXA | 89b64ab | 2020-12-16 09:21:01 +0100 | [diff] [blame] | 67 | |
BjornMagnussonXA | 39ad50e | 2020-10-22 09:55:25 +0200 | [diff] [blame] | 68 | |
| 69 | # Tag for guilin branch |
| 70 | # SDNC A1 Controller remote image and tag |
BjornMagnussonXA | 89b64ab | 2020-12-16 09:21:01 +0100 | [diff] [blame] | 71 | SDNC_A1_CONTROLLER_IMAGE_BASE="onap/sdnc-image" |
| 72 | SDNC_A1_CONTROLLER_IMAGE_TAG_REMOTE_SNAPSHOT="2.0.5-STAGING-latest" |
| 73 | SDNC_A1_CONTROLLER_IMAGE_TAG_REMOTE="2.0.5-STAGING-latest" |
| 74 | SDNC_A1_CONTROLLER_IMAGE_TAG_REMOTE_RELEASE="2.0.4" #Will use snapshot repo |
BjornMagnussonXA | 39ad50e | 2020-10-22 09:55:25 +0200 | [diff] [blame] | 75 | |
| 76 | |
| 77 | #SDNC DB remote image and tag |
BjornMagnussonXA | 89b64ab | 2020-12-16 09:21:01 +0100 | [diff] [blame] | 78 | #The DB is part of SDNC so handled in the same way as SDNC |
| 79 | SDNC_DB_IMAGE_BASE="mysql/mysql-server" |
| 80 | SDNC_DB_IMAGE_TAG_REMOTE_PROXY="5.6" |
BjornMagnussonXA | 39ad50e | 2020-10-22 09:55:25 +0200 | [diff] [blame] | 81 | |
| 82 | |
BjornMagnussonXA | 89b64ab | 2020-12-16 09:21:01 +0100 | [diff] [blame] | 83 | # Control Panel image and tag - uses bronze release |
| 84 | CONTROL_PANEL_IMAGE_BASE="o-ran-sc/nonrtric-controlpanel" |
| 85 | CONTROL_PANEL_IMAGE_TAG_REMOTE_RELEASE_ORAN="2.0.0" |
| 86 | |
| 87 | |
| 88 | # Near RT RIC Simulator image and tags - uses bronze release |
| 89 | RIC_SIM_IMAGE_BASE="o-ran-sc/a1-simulator" |
| 90 | RIC_SIM_IMAGE_TAG_REMOTE_RELEASE_ORAN="2.0.0" |
BjornMagnussonXA | 39ad50e | 2020-10-22 09:55:25 +0200 | [diff] [blame] | 91 | |
| 92 | |
| 93 | #Consul remote image and tag |
BjornMagnussonXA | 89b64ab | 2020-12-16 09:21:01 +0100 | [diff] [blame] | 94 | CONSUL_IMAGE_BASE="consul" |
| 95 | CONSUL_IMAGE_TAG_REMOTE_PROXY="1.7.2" |
BjornMagnussonXA | 39ad50e | 2020-10-22 09:55:25 +0200 | [diff] [blame] | 96 | #No local image for Consul, remote image always used |
| 97 | |
| 98 | |
| 99 | #CBS remote image and tag |
BjornMagnussonXA | 89b64ab | 2020-12-16 09:21:01 +0100 | [diff] [blame] | 100 | CBS_IMAGE_BASE="onap/org.onap.dcaegen2.platform.configbinding.app-app" |
| 101 | CBS_IMAGE_TAG_REMOTE_RELEASE_ONAP="2.3.0" |
BjornMagnussonXA | 39ad50e | 2020-10-22 09:55:25 +0200 | [diff] [blame] | 102 | #No local image for CBS, remote image always used |
| 103 | |
| 104 | |
| 105 | #MR stub image and tag |
BjornMagnussonXA | 89b64ab | 2020-12-16 09:21:01 +0100 | [diff] [blame] | 106 | MRSTUB_IMAGE_BASE="mrstub" |
| 107 | MRSTUB_IMAGE_TAG_LOCAL="latest" |
BjornMagnussonXA | 39ad50e | 2020-10-22 09:55:25 +0200 | [diff] [blame] | 108 | #No remote image for MR stub, local image always used |
| 109 | |
BjornMagnussonXA | 89b64ab | 2020-12-16 09:21:01 +0100 | [diff] [blame] | 110 | |
BjornMagnussonXA | 39ad50e | 2020-10-22 09:55:25 +0200 | [diff] [blame] | 111 | #Callback receiver image and tag |
BjornMagnussonXA | 89b64ab | 2020-12-16 09:21:01 +0100 | [diff] [blame] | 112 | CR_IMAGE_BASE="callback-receiver" |
| 113 | CR_IMAGE_TAG_LOCAL="latest" |
BjornMagnussonXA | 39ad50e | 2020-10-22 09:55:25 +0200 | [diff] [blame] | 114 | #No remote image for CR, local image always used |
| 115 | |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 116 | #Http proxy remote image and tag |
BjornMagnussonXA | 674793d | 2021-05-06 19:49:17 +0200 | [diff] [blame] | 117 | HTTP_PROXY_IMAGE_BASE="nodejs-http-proxy" |
| 118 | HTTP_PROXY_IMAGE_TAG_LOCAL="latest" |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 119 | #No local image for http proxy, remote image always used |
BjornMagnussonXA | 89b64ab | 2020-12-16 09:21:01 +0100 | [diff] [blame] | 120 | |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 121 | #ONAP Zookeeper remote image and tag |
| 122 | ONAP_ZOOKEEPER_IMAGE_BASE="onap/dmaap/zookeeper" |
| 123 | ONAP_ZOOKEEPER_IMAGE_TAG_REMOTE_RELEASE_ONAP="6.0.3" |
| 124 | #No local image for ONAP Zookeeper, remote image always used |
| 125 | |
| 126 | #ONAP Kafka remote image and tag |
| 127 | ONAP_KAFKA_IMAGE_BASE="onap/dmaap/kafka111" |
| 128 | ONAP_KAFKA_IMAGE_TAG_REMOTE_RELEASE_ONAP="1.0.4" |
| 129 | #No local image for ONAP Kafka, remote image always used |
| 130 | |
| 131 | #ONAP DMAAP-MR remote image and tag |
| 132 | ONAP_DMAAPMR_IMAGE_BASE="onap/dmaap/dmaap-mr" |
| 133 | ONAP_DMAAPMR_IMAGE_TAG_REMOTE_RELEASE_ONAP="1.1.18" |
| 134 | #No local image for ONAP DMAAP-MR, remote image always used |
BjornMagnussonXA | 89b64ab | 2020-12-16 09:21:01 +0100 | [diff] [blame] | 135 | |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 136 | #Kube proxy remote image and tag |
BjornMagnussonXA | 674793d | 2021-05-06 19:49:17 +0200 | [diff] [blame] | 137 | KUBE_PROXY_IMAGE_BASE="nodejs-kube-proxy" |
BjornMagnussonXA | a549157 | 2021-05-04 09:21:24 +0200 | [diff] [blame] | 138 | KUBE_PROXY_IMAGE_TAG_LOCAL="latest" |
| 139 | #No remote image for kube proxy, local image always used |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 140 | |
| 141 | |
BjornMagnussonXA | 89b64ab | 2020-12-16 09:21:01 +0100 | [diff] [blame] | 142 | # List of app short names produced by the project |
| 143 | PROJECT_IMAGES_APP_NAMES="PA SDNC" |
| 144 | |
| 145 | # List of app short names which images pulled from ORAN |
| 146 | ORAN_IMAGES_APP_NAMES="CP RICSIM" |
| 147 | |
| 148 | # List of app short names which images pulled from ONAP |
| 149 | ONAP_IMAGES_APP_NAMES="" # Not used |
| 150 | |
| 151 | ######################################## |
| 152 | # Detailed settings per app |
| 153 | ######################################## |
| 154 | |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 155 | |
| 156 | DOCKER_SIM_NWNAME="nonrtric-docker-net" # Name of docker private network |
| 157 | |
| 158 | KUBE_NONRTRIC_NAMESPACE="nonrtric" # Namespace for all nonrtric components |
| 159 | KUBE_SIM_NAMESPACE="nonrtric-ft" # Namespace for simulators (except MR and RICSIM) |
| 160 | KUBE_ONAP_NAMESPACE="onap" # Namespace for onap (only message router) |
| 161 | |
| 162 | POLICY_AGENT_EXTERNAL_PORT=8081 # Policy Agent container external port (host -> container) |
| 163 | POLICY_AGENT_INTERNAL_PORT=8081 # Policy Agent container internal port (container -> container) |
| 164 | POLICY_AGENT_EXTERNAL_SECURE_PORT=8433 # Policy Agent container external secure port (host -> container) |
| 165 | POLICY_AGENT_INTERNAL_SECURE_PORT=8433 # Policy Agent container internal secure port (container -> container) |
| 166 | POLICY_AGENT_APIS="V1" # Supported northbound api versions |
| 167 | PMS_VERSION="V1" # Tested version of northbound API |
| 168 | PMS_API_PREFIX="" # api url prefix, only for V2 |
| 169 | |
| 170 | POLICY_AGENT_APP_NAME="policymanagementservice" # Name for Policy Agent container |
| 171 | POLICY_AGENT_DISPLAY_NAME="Policy Management Service" |
| 172 | POLICY_AGENT_HOST_MNT_DIR="./mnt" # Mounted dir, relative to compose file, on the host |
| 173 | POLICY_AGENT_LOGPATH="/var/log/policy-agent/application.log" # Path the application log in the Policy Agent container |
| 174 | POLICY_AGENT_APP_NAME_ALIAS="policy-agent-container" # Alias name, name used by the control panel |
| 175 | POLICY_AGENT_CONFIG_KEY="policy-agent" # Key for consul config |
| 176 | POLICY_AGENT_PKG_NAME="org.onap.ccsdk.oran.a1policymanagementservice" # Java base package name |
| 177 | POLICY_AGENT_ACTUATOR="/actuator/loggers/$POLICY_AGENT_PKG_NAME" # Url for trace/debug |
| 178 | POLICY_AGENT_ALIVE_URL="/status" # Base path for alive check |
| 179 | POLICY_AGENT_COMPOSE_DIR="policy_agent" # Dir in simulator_group for docker-compose |
| 180 | POLICY_AGENT_CONFIG_MOUNT_PATH="/opt/app/policy-agent/config" # Path in container for config file |
| 181 | POLICY_AGENT_DATA_MOUNT_PATH="/opt/app/policy-agent/data" # Path in container for data file |
| 182 | POLICY_AGENT_CONFIG_FILE="application.yaml" # Container config file name |
| 183 | POLICY_AGENT_DATA_FILE="application_configuration.json" # Container data file name |
BjornMagnussonXA | e6b019f | 2021-04-27 15:34:09 +0200 | [diff] [blame] | 184 | POLICY_AGENT_CONTAINER_MNT_DIR="/var/policy-management-service" # Mounted dir in the container |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 185 | |
| 186 | MR_DMAAP_APP_NAME="dmaap-mr" # Name for the Dmaap MR |
| 187 | MR_STUB_APP_NAME="mr-stub" # Name of the MR stub |
| 188 | MR_DMAAP_DISPLAY_NAME="DMAAP Message Router" |
| 189 | MR_STUB_DISPLAY_NAME="Message Router stub" |
| 190 | MR_STUB_CERT_MOUNT_DIR="./cert" |
| 191 | MR_EXTERNAL_PORT=3904 # MR dmaap/stub container external port |
| 192 | MR_INTERNAL_PORT=3904 # MR dmaap/stub container internal port |
| 193 | MR_EXTERNAL_SECURE_PORT=3905 # MR dmaap/stub container external secure port |
| 194 | MR_INTERNAL_SECURE_PORT=3905 # MR dmaap/stub container internal secure port |
| 195 | MR_DMAAP_LOCALHOST_PORT=3904 # MR stub container external port (host -> container) |
| 196 | MR_STUB_LOCALHOST_PORT=3908 # MR stub container external port (host -> container) |
| 197 | MR_DMAAP_LOCALHOST_SECURE_PORT=3905 # MR stub container internal port (container -> container) |
| 198 | MR_STUB_LOCALHOST_SECURE_PORT=3909 # MR stub container external secure port (host -> container) |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 199 | MR_READ_TOPIC="A1-POLICY-AGENT-READ" # Read topic |
| 200 | MR_WRITE_TOPIC="A1-POLICY-AGENT-WRITE" # Write topic |
elinuxhenrik | 7fbe885 | 2021-04-23 13:07:42 +0200 | [diff] [blame] | 201 | MR_READ_URL="/events/$MR_READ_TOPIC/users/policy-agent?timeout=15000&limit=100" # Path to read messages from MR |
| 202 | MR_WRITE_URL="/events/$MR_WRITE_TOPIC" # Path to write messages to MR |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 203 | MR_STUB_ALIVE_URL="/" # Base path for mr stub alive check |
| 204 | MR_DMAAP_ALIVE_URL="/topics" # Base path for dmaap-mr alive check |
| 205 | MR_DMAAP_COMPOSE_DIR="dmaapmr" # Dir in simulator_group for dmaap mr for - docker-compose |
| 206 | MR_STUB_COMPOSE_DIR="mrstub" # Dir in simulator_group for mr stub for - docker-compose |
| 207 | MR_KAFKA_APP_NAME="kafka" # Kafka app name |
| 208 | MR_ZOOKEEPER_APP_NAME="zookeeper" # Zookeeper app name |
BjornMagnussonXA | 89b64ab | 2020-12-16 09:21:01 +0100 | [diff] [blame] | 209 | |
| 210 | |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 211 | CR_APP_NAME="callback-receiver" # Name for the Callback receiver |
| 212 | CR_DISPLAY_NAME="Callback Reciever" |
| 213 | CR_EXTERNAL_PORT=8090 # Callback receiver container external port (host -> container) |
| 214 | CR_INTERNAL_PORT=8090 # Callback receiver container internal port (container -> container) |
| 215 | CR_EXTERNAL_SECURE_PORT=8091 # Callback receiver container external secure port (host -> container) |
| 216 | CR_INTERNAL_SECURE_PORT=8091 # Callback receiver container internal secure port (container -> container) |
| 217 | CR_APP_CALLBACK="/callbacks" # Url for callbacks |
| 218 | CR_ALIVE_URL="/" # Base path for alive check |
| 219 | CR_COMPOSE_DIR="cr" # Dir in simulator_group for docker-compose |
BjornMagnussonXA | 39ad50e | 2020-10-22 09:55:25 +0200 | [diff] [blame] | 220 | |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 221 | CONSUL_HOST="consul-server" # Host name of consul |
| 222 | CONSUL_DISPLAY_NAME="Consul" |
| 223 | CONSUL_EXTERNAL_PORT=8500 # Consul container external port (host -> container) |
| 224 | CONSUL_INTERNAL_PORT=8500 # Consul container internal port (container -> container) |
| 225 | CONSUL_APP_NAME="polman-consul" # Name for consul container |
| 226 | CONSUL_ALIVE_URL="/ui/dc1/kv" # Base path for alive check |
| 227 | CONSUL_CBS_COMPOSE_DIR="consul_cbs" # Dir in simulator group for docker compose |
BjornMagnussonXA | 39ad50e | 2020-10-22 09:55:25 +0200 | [diff] [blame] | 228 | |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 229 | CBS_APP_NAME="polman-cbs" # Name for CBS container |
| 230 | CBS_DISPLAY_NAME="Config Binding Service" |
| 231 | CBS_EXTERNAL_PORT=10000 # CBS container external port (host -> container) |
| 232 | CBS_INTERNAL_PORT=10000 # CBS container internal port (container -> container) |
| 233 | CONFIG_BINDING_SERVICE="config-binding-service" # Host name of CBS |
| 234 | CBS_ALIVE_URL="/healthcheck" # Base path for alive check |
BjornMagnussonXA | 39ad50e | 2020-10-22 09:55:25 +0200 | [diff] [blame] | 235 | |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 236 | RIC_SIM_DISPLAY_NAME="Near-RT RIC A1 Simulator" |
| 237 | RIC_SIM_BASE="g" # Base name of the RIC Simulator container, shall be the group code |
| 238 | # Note, a prefix is added to each container name by the .env file in the 'ric' dir |
| 239 | RIC_SIM_PREFIX="ricsim" # Prefix added to ric container name, added in the .env file in the 'ric' dir |
| 240 | # This prefix can be changed from the command line |
| 241 | RIC_SIM_INTERNAL_PORT=8085 # RIC Simulator container internal port (container -> container). |
| 242 | # (external ports allocated by docker) |
| 243 | RIC_SIM_INTERNAL_SECURE_PORT=8185 # RIC Simulator container internal secure port (container -> container). |
| 244 | # (external ports allocated by docker) |
| 245 | RIC_SIM_CERT_MOUNT_DIR="./cert" |
| 246 | RIC_SIM_COMPOSE_DIR="ric" # Dir in simulator group for docker compose |
| 247 | RIC_SIM_ALIVE_URL="/" |
BjornMagnussonXA | 39ad50e | 2020-10-22 09:55:25 +0200 | [diff] [blame] | 248 | |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 249 | SDNC_APP_NAME="a1controller" # Name of the SNDC A1 Controller container |
| 250 | SDNC_DISPLAY_NAME="SDNC A1 Controller" |
| 251 | SDNC_EXTERNAL_PORT=8282 # SNDC A1 Controller container external port (host -> container) |
| 252 | SDNC_INTERNAL_PORT=8181 # SNDC A1 Controller container internal port (container -> container) |
| 253 | SDNC_EXTERNAL_SECURE_PORT=8443 # SNDC A1 Controller container external securee port (host -> container) |
| 254 | SDNC_INTERNAL_SECURE_PORT=8443 # SNDC A1 Controller container internal secure port (container -> container) |
| 255 | SDNC_DB_APP_NAME="sdncdb" # Name of the SDNC DB container |
| 256 | SDNC_A1_TRUSTSTORE_PASSWORD="a1adapter" # SDNC truststore password |
| 257 | SDNC_USER="admin" # SDNC username |
| 258 | SDNC_PWD="Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U" # SNDC PWD |
| 259 | SDNC_API_URL="/restconf/operations/A1-ADAPTER-API:" # Base url path for SNDC API |
| 260 | SDNC_ALIVE_URL="/apidoc/explorer/" # Base url path for SNDC API docs (for alive check) |
| 261 | SDNC_COMPOSE_DIR="sdnc" # Dir in simulator_group for docker-compose |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 262 | SDNC_COMPOSE_FILE="docker-compose.yml" |
| 263 | SDNC_KUBE_APP_FILE="app.yaml" |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 264 | SDNC_KARAF_LOG="/opt/opendaylight/data/log/karaf.log" # Path to karaf log |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 265 | SDNC_RESPONSE_JSON_KEY="output" # Key name for output json in replies from sdnc |
BjornMagnussonXA | 39ad50e | 2020-10-22 09:55:25 +0200 | [diff] [blame] | 266 | |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 267 | CONTROL_PANEL_APP_NAME="controlpanel" # Name of the Control Panel container |
| 268 | CONTROL_PANEL_DISPLAY_NAME="Non-RT RIC Control Panel" |
| 269 | CONTROL_PANEL_EXTERNAL_PORT=8080 # Control Panel container external port (host -> container) |
| 270 | CONTROL_PANEL_INTERNAL_PORT=8080 # Control Panel container internal port (container -> container) |
| 271 | CONTROL_PANEL_EXTERNAL_SECURE_PORT=8880 # Control Panel container external port (host -> container) |
| 272 | CONTROL_PANEL_INTERNAL_SECURE_PORT=8082 # Control Panel container internal port (container -> container) |
| 273 | CONTROL_PANEL_LOGPATH="/logs/nonrtric-controlpanel.log" # Path the application log in the Control Panel container |
| 274 | CONTROL_PANEL_ALIVE_URL="/" # Base path for alive check |
| 275 | CONTROL_PANEL_COMPOSE_DIR="control_panel" # Dir in simulator_group for docker-compose |
| 276 | CONTROL_PANEL_CONFIG_MOUNT_PATH=/maven # Container internal path for config |
| 277 | CONTROL_PANEL_CONFIG_FILE=application.properties # Config file name |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 278 | CONTROL_PANEL_HOST_MNT_DIR="./mnt" # Mounted dir, relative to compose file, on the host |
BjornMagnussonXA | 39ad50e | 2020-10-22 09:55:25 +0200 | [diff] [blame] | 279 | |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 280 | HTTP_PROXY_APP_NAME="httpproxy" # Name of the Http Proxy container |
| 281 | HTTP_PROXY_DISPLAY_NAME="Http Proxy" |
BjornMagnussonXA | 674793d | 2021-05-06 19:49:17 +0200 | [diff] [blame] | 282 | HTTP_PROXY_EXTERNAL_PORT=8740 # Http Proxy container external port (host -> container) |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 283 | HTTP_PROXY_INTERNAL_PORT=8080 # Http Proxy container internal port (container -> container) |
BjornMagnussonXA | 674793d | 2021-05-06 19:49:17 +0200 | [diff] [blame] | 284 | HTTP_PROXY_EXTERNAL_SECURE_PORT=8742 # Http Proxy container external secure port (host -> container) |
| 285 | HTTP_PROXY_INTERNAL_SECURE_PORT=8433 # Http Proxy container internal secure port (container -> container) |
| 286 | HTTP_PROXY_WEB_EXTERNAL_PORT=8741 # Http Proxy container external port (host -> container) |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 287 | HTTP_PROXY_WEB_INTERNAL_PORT=8081 # Http Proxy container internal port (container -> container) |
BjornMagnussonXA | 674793d | 2021-05-06 19:49:17 +0200 | [diff] [blame] | 288 | HTTP_PROXY_WEB_EXTERNAL_SECURE_PORT=8743 # Http Proxy container external secure port (host -> container) |
| 289 | HTTP_PROXY_WEB_INTERNAL_SECURE_PORT=8434 # Http Proxy container internal secure port (container -> container |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 290 | HTTP_PROXY_CONFIG_PORT=0 # Port number for proxy config, will be set if proxy is started |
| 291 | HTTP_PROXY_CONFIG_HOST_NAME="" # Proxy host, will be set if proxy is started |
| 292 | HTTP_PROXY_ALIVE_URL="/" # Base path for alive check |
| 293 | HTTP_PROXY_COMPOSE_DIR="httpproxy" # Dir in simulator_group for docker-compose |
BjornMagnussonXA | 674793d | 2021-05-06 19:49:17 +0200 | [diff] [blame] | 294 | HTTP_PROXY_BUILD_DIR="http-https-proxy" # Dir in simulator_group for image build - note, reuses source from kubeproxy |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 295 | |
| 296 | KUBE_PROXY_APP_NAME="kubeproxy" # Name of the Kube Http Proxy container |
| 297 | KUBE_PROXY_DISPLAY_NAME="Kube Http Proxy" |
| 298 | KUBE_PROXY_EXTERNAL_PORT=8730 # Kube Http Proxy container external port (host -> container) |
| 299 | KUBE_PROXY_INTERNAL_PORT=8080 # Kube Http Proxy container internal port (container -> container) |
BjornMagnussonXA | 674793d | 2021-05-06 19:49:17 +0200 | [diff] [blame] | 300 | KUBE_PROXY_EXTERNAL_SECURE_PORT=8782 # Kube Proxy container external secure port (host -> container) |
| 301 | KUBE_PROXY_INTERNAL_SECURE_PORT=8433 # Kube Proxy container internal secure port (container -> container) |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 302 | KUBE_PROXY_WEB_EXTERNAL_PORT=8731 # Kube Http Proxy container external port (host -> container) |
| 303 | KUBE_PROXY_WEB_INTERNAL_PORT=8081 # Kube Http Proxy container internal port (container -> container) |
BjornMagnussonXA | 674793d | 2021-05-06 19:49:17 +0200 | [diff] [blame] | 304 | KUBE_PROXY_WEB_EXTERNAL_SECURE_PORT=8783 # Kube Proxy container external secure port (host -> container) |
| 305 | KUBE_PROXY_WEB_INTERNAL_SECURE_PORT=8434 # Kube Proxy container internal secure port (container -> container |
BjornMagnussonXA | 483ee33 | 2021-04-08 01:35:24 +0200 | [diff] [blame] | 306 | KUBE_PROXY_PATH="" # Proxy url path, will be set if proxy is started |
BjornMagnussonXA | be9a07f | 2021-02-25 10:51:46 +0100 | [diff] [blame] | 307 | KUBE_PROXY_ALIVE_URL="/" # Base path for alive check |
| 308 | KUBE_PROXY_COMPOSE_DIR="kubeproxy" # Dir in simulator_group for docker-compose |
| 309 | |
BjornMagnussonXA | 89b64ab | 2020-12-16 09:21:01 +0100 | [diff] [blame] | 310 | ######################################## |
| 311 | # Setting for common curl-base function |
| 312 | ######################################## |
| 313 | |
| 314 | |
BjornMagnussonXA | e0b665e | 2021-01-08 22:19:18 +0100 | [diff] [blame] | 315 | UUID="" # UUID used as prefix to the policy id to simulate a real UUID |
| 316 | # Testscript need to set the UUID to use other this empty prefix is used |
BjornMagnussonXA | 39ad50e | 2020-10-22 09:55:25 +0200 | [diff] [blame] | 317 | |