blob: 9fc963f61f9808783e6f4dbdd46258c5a360e2ee [file] [log] [blame]
BjornMagnussonXA56683ca2022-04-04 17:17:22 +02001################################################################################
2# Copyright 2021 highstreet technologies GmbH
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16version: '3.8'
17
18x-common_env: &common_env
19 IPv6_ENABLED: ${IPv6_ENABLED}
20 SSH_CONNECTIONS: ${SSH_CONNECTIONS}
21 TLS_CONNECTIONS: ${TLS_CONNECTIONS}
22 NTS_NF_MOUNT_POINT_ADDRESSING_METHOD: ${NTS_NF_MOUNT_POINT_ADDRESSING_METHOD}
23
24 NTS_HOST_IP: ${NTS_HOST_IP}
25 NTS_HOST_BASE_PORT: ${NTS_HOST_BASE_PORT}
26 NTS_HOST_NETCONF_SSH_BASE_PORT: ${NTS_HOST_NETCONF_SSH_BASE_PORT}
27 NTS_HOST_NETCONF_TLS_BASE_PORT: ${NTS_HOST_NETCONF_TLS_BASE_PORT}
28 NTS_HOST_TRANSFER_FTP_BASE_PORT: ${NTS_HOST_TRANSFER_FTP_BASE_PORT}
29 NTS_HOST_TRANSFER_SFTP_BASE_PORT: ${NTS_HOST_TRANSFER_SFTP_BASE_PORT}
30
31 SDN_CONTROLLER_PROTOCOL: ${SDN_CONTROLLER_PROTOCOL}
32 SDN_CONTROLLER_IP: ${SDNC_OAM_IPv6}
33 SDN_CONTROLLER_PORT: ${SDNC_REST_PORT}
34 SDN_CONTROLLER_CALLHOME_IP: ${SDNC_OAM_IPv6}
35 SDN_CONTROLLER_CALLHOME_PORT: ${SDN_CONTROLLER_CALLHOME_PORT}
36 SDN_CONTROLLER_USERNAME: ${ADMIN_USERNAME}
37 SDN_CONTROLLER_PASSWORD: ${ADMIN_PASSWORD}
38
39 VES_COMMON_HEADER_VERSION: ${VES_COMMON_HEADER_VERSION}
40 VES_ENDPOINT_PROTOCOL: ${VES_ENDPOINT_PROTOCOL}
41 VES_ENDPOINT_IP: ${VES_COLLECTOR_OAM_IPv6}
42 VES_ENDPOINT_PORT: ${VES_ENDPOINT_PORT}
43 VES_ENDPOINT_AUTH_METHOD: ${VES_ENDPOINT_AUTH_METHOD}
44 VES_ENDPOINT_USERNAME: ${VES_ENDPOINT_USERNAME}
45 VES_ENDPOINT_PASSWORD: ${VES_ENDPOINT_PASSWORD}
46
47x-du_env: &du_env
48 NTS_NF_STANDALONE_START_FEATURES: "datastore-populate ves-heartbeat ves-file-ready ves-pnf-registration web-cut-through"
49
50x-ru-env: &ru_env
51 NTS_NF_STANDALONE_START_FEATURES: "datastore-populate netconf-call-home web-cut-through"
52
53x-topo-env: &topo_env
54 NTS_NF_STANDALONE_START_FEATURES: "datastore-populate netconf-call-home web-cut-through"
55
56x-nf: &common_nf
57 stop_grace_period: 5m
58 cap_add:
59 - SYS_ADMIN
60 - SYS_PTRACE
61
62services:
63 ntsim-ng-o-du-1122:
64 <<: *common_nf
65 image: "${NEXUS3_DOCKER_REPO}nts-ng-o-ran-du:${NTS_BUILD_VERSION}"
66 container_name: ntsim-ng-o-du-1122
67 hostname: O-DU-1122
68 # volumes:
69 # - ./ntsim-ng-o-du/config.json:/opt/dev/ntsim-ng/config/config.json
70 # - ./ntsim-ng-o-du/o-ran-sc-du-hello-world-running.xml:/opt/dev/deploy/data/o-ran-sc-du-hello-world-running.xml
71 # - ./ntsim-ng-o-du/o-ran-sc-du-hello-world-operational.xml:/opt/dev/deploy/data/o-ran-sc-du-hello-world-operational.xml
72 environment:
73 <<: *common_env
74 <<: *du_env
75 labels:
76 - "pmflowtest=cont"
77
78
79networks:
80 default:
81 external: true
82 name: oam