demx8as6 | a93cb37 | 2021-06-06 16:05:58 +0200 | [diff] [blame] | 1 | ################################################################################ |
Martin Skorupski | 990de72 | 2023-02-03 12:30:55 +0100 | [diff] [blame^] | 2 | # Copyright 2023 highstreet technologies GmbH |
demx8as6 | a93cb37 | 2021-06-06 16:05:58 +0200 | [diff] [blame] | 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 | # |
| 16 | version: '3.8' |
| 17 | |
| 18 | x-common_env: &common_env |
| 19 | IPv6_ENABLED: ${IPv6_ENABLED} |
| 20 | SSH_CONNECTIONS: ${SSH_CONNECTIONS} |
Alex Stancu | 907218a | 2022-03-03 14:47:18 +0200 | [diff] [blame] | 21 | TLS_CONNECTIONS: ${TLS_CONNECTIONS} |
demx8as6 | a93cb37 | 2021-06-06 16:05:58 +0200 | [diff] [blame] | 22 | NTS_NF_MOUNT_POINT_ADDRESSING_METHOD: ${NTS_NF_MOUNT_POINT_ADDRESSING_METHOD} |
Alex Stancu | 907218a | 2022-03-03 14:47:18 +0200 | [diff] [blame] | 23 | |
demx8as6 | a93cb37 | 2021-06-06 16:05:58 +0200 | [diff] [blame] | 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} |
Alex Stancu | 907218a | 2022-03-03 14:47:18 +0200 | [diff] [blame] | 30 | |
demx8as6 | a93cb37 | 2021-06-06 16:05:58 +0200 | [diff] [blame] | 31 | SDN_CONTROLLER_PROTOCOL: ${SDN_CONTROLLER_PROTOCOL} |
Martin Skorupski | 990de72 | 2023-02-03 12:30:55 +0100 | [diff] [blame^] | 32 | SDN_CONTROLLER_IP: ${SDNC_OAM_HOST} |
| 33 | # SDN_CONTROLLER_PORT: ${SDNC_REST_PORT} |
demx8as6 | b9d92cc | 2021-12-13 08:28:14 +0100 | [diff] [blame] | 34 | SDN_CONTROLLER_CALLHOME_IP: ${SDNC_OAM_IPv6} |
demx8as6 | a93cb37 | 2021-06-06 16:05:58 +0200 | [diff] [blame] | 35 | SDN_CONTROLLER_CALLHOME_PORT: ${SDN_CONTROLLER_CALLHOME_PORT} |
| 36 | SDN_CONTROLLER_USERNAME: ${ADMIN_USERNAME} |
| 37 | SDN_CONTROLLER_PASSWORD: ${ADMIN_PASSWORD} |
Alex Stancu | 907218a | 2022-03-03 14:47:18 +0200 | [diff] [blame] | 38 | |
demx8as6 | a93cb37 | 2021-06-06 16:05:58 +0200 | [diff] [blame] | 39 | VES_COMMON_HEADER_VERSION: ${VES_COMMON_HEADER_VERSION} |
| 40 | VES_ENDPOINT_PROTOCOL: ${VES_ENDPOINT_PROTOCOL} |
Martin Skorupski | 990de72 | 2023-02-03 12:30:55 +0100 | [diff] [blame^] | 41 | VES_ENDPOINT_IP: ${VES_COLLECTOR_OAM_HOST} |
demx8as6 | a93cb37 | 2021-06-06 16:05:58 +0200 | [diff] [blame] | 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 | |
| 47 | x-du_env: &du_env |
demx8as6 | 243ef37 | 2022-10-21 13:35:53 +0200 | [diff] [blame] | 48 | # NTS_NF_STANDALONE_START_FEATURES: "datastore-populate ves-heartbeat ves-file-ready ves-pnf-registration web-cut-through" |
| 49 | NTS_NF_STANDALONE_START_FEATURES: "datastore-populate ves-heartbeat ves-file-ready ves-pnf-registration ves-o1-pnf-registration web-cut-through" |
demx8as6 | a93cb37 | 2021-06-06 16:05:58 +0200 | [diff] [blame] | 50 | |
| 51 | x-ru-env: &ru_env |
| 52 | NTS_NF_STANDALONE_START_FEATURES: "datastore-populate netconf-call-home web-cut-through" |
| 53 | |
| 54 | x-topo-env: &topo_env |
| 55 | NTS_NF_STANDALONE_START_FEATURES: "datastore-populate netconf-call-home web-cut-through" |
| 56 | |
| 57 | x-nf: &common_nf |
| 58 | stop_grace_period: 5m |
| 59 | cap_add: |
| 60 | - SYS_ADMIN |
| 61 | - SYS_PTRACE |
| 62 | |
| 63 | services: |
| 64 | ntsim-ng-o-du-1122: |
| 65 | <<: *common_nf |
| 66 | image: "${NEXUS3_DOCKER_REPO}nts-ng-o-ran-du:${NTS_BUILD_VERSION}" |
| 67 | container_name: ntsim-ng-o-du-1122 |
Alex Stancu | 80bfd37 | 2022-02-04 17:30:41 +0200 | [diff] [blame] | 68 | hostname: O-DU-1122 |
demx8as6 | a93cb37 | 2021-06-06 16:05:58 +0200 | [diff] [blame] | 69 | volumes: |
| 70 | - ./ntsim-ng-o-du/config.json:/opt/dev/ntsim-ng/config/config.json |
| 71 | - ./ntsim-ng-o-du/o-ran-sc-du-hello-world-running.xml:/opt/dev/deploy/data/o-ran-sc-du-hello-world-running.xml |
| 72 | - ./ntsim-ng-o-du/o-ran-sc-du-hello-world-operational.xml:/opt/dev/deploy/data/o-ran-sc-du-hello-world-operational.xml |
| 73 | environment: |
| 74 | <<: *common_env |
| 75 | <<: *du_env |
| 76 | |
| 77 | ntsim-ng-o-ru-fh-11221: |
| 78 | <<: *common_nf |
| 79 | image: "${NEXUS3_DOCKER_REPO}nts-ng-o-ran-ru-fh:${NTS_BUILD_VERSION}" |
| 80 | container_name: ntsim-ng-o-ru-fh-11221 |
Alex Stancu | 80bfd37 | 2022-02-04 17:30:41 +0200 | [diff] [blame] | 81 | hostname: O-RU-11221 |
demx8as6 | a93cb37 | 2021-06-06 16:05:58 +0200 | [diff] [blame] | 82 | volumes: |
| 83 | - ./ntsim-ng-o-ru/ntsim-ng-o-ru-fh-1/config.json:/opt/dev/ntsim-ng/config/config.json |
| 84 | - ./ntsim-ng-o-ru/ntsim-ng-o-ru-fh-1/ietf-hardware-operational.json:/opt/dev/deploy/data/ietf-hardware-operational.json |
| 85 | - ./ntsim-ng-o-ru/ntsim-ng-o-ru-fh-1/ietf-hardware-running.json:/opt/dev/deploy/data/ietf-hardware-running.json |
| 86 | - ./ntsim-ng-o-ru/ntsim-ng-o-ru-fh-1/ietf-interfaces-operational.xml:/opt/dev/deploy/data/ietf-interfaces-operational.xml |
| 87 | - ./ntsim-ng-o-ru/ntsim-ng-o-ru-fh-1/ietf-interfaces-running.xml:/opt/dev/deploy/data/ietf-interfaces-running.xml |
| 88 | environment: |
| 89 | <<: *common_env |
| 90 | <<: *ru_env |
| 91 | |
| 92 | ntsim-ng-o-ru-fh-11222: |
| 93 | <<: *common_nf |
| 94 | image: "${NEXUS3_DOCKER_REPO}nts-ng-o-ran-ru-fh:${NTS_BUILD_VERSION}" |
| 95 | container_name: ntsim-ng-o-ru-fh-11222 |
Alex Stancu | 80bfd37 | 2022-02-04 17:30:41 +0200 | [diff] [blame] | 96 | hostname: O-RU-11222 |
demx8as6 | a93cb37 | 2021-06-06 16:05:58 +0200 | [diff] [blame] | 97 | volumes: |
| 98 | - ./ntsim-ng-o-ru/ntsim-ng-o-ru-fh-2/config.json:/opt/dev/ntsim-ng/config/config.json |
| 99 | - ./ntsim-ng-o-ru/ntsim-ng-o-ru-fh-2/ietf-hardware-operational.json:/opt/dev/deploy/data/ietf-hardware-operational.json |
| 100 | - ./ntsim-ng-o-ru/ntsim-ng-o-ru-fh-2/ietf-hardware-running.json:/opt/dev/deploy/data/ietf-hardware-running.json |
| 101 | - ./ntsim-ng-o-ru/ntsim-ng-o-ru-fh-2/ietf-interfaces-operational.xml:/opt/dev/deploy/data/ietf-interfaces-operational.xml |
| 102 | - ./ntsim-ng-o-ru/ntsim-ng-o-ru-fh-2/ietf-interfaces-running.xml:/opt/dev/deploy/data/ietf-interfaces-running.xml |
| 103 | environment: |
| 104 | <<: *common_env |
| 105 | <<: *ru_env |
| 106 | |
| 107 | ntsim-ng-o-ru-fh-11223: |
| 108 | <<: *common_nf |
| 109 | image: "${NEXUS3_DOCKER_REPO}nts-ng-o-ran-ru-fh:${NTS_BUILD_VERSION}" |
| 110 | container_name: ntsim-ng-o-ru-fh-11223 |
Alex Stancu | 80bfd37 | 2022-02-04 17:30:41 +0200 | [diff] [blame] | 111 | hostname: O-RU-11223 |
demx8as6 | a93cb37 | 2021-06-06 16:05:58 +0200 | [diff] [blame] | 112 | volumes: |
| 113 | - ./ntsim-ng-o-ru/ntsim-ng-o-ru-fh-3/config.json:/opt/dev/ntsim-ng/config/config.json |
| 114 | - ./ntsim-ng-o-ru/ntsim-ng-o-ru-fh-3/ietf-hardware-operational.json:/opt/dev/deploy/data/ietf-hardware-operational.json |
| 115 | - ./ntsim-ng-o-ru/ntsim-ng-o-ru-fh-3/ietf-hardware-running.json:/opt/dev/deploy/data/ietf-hardware-running.json |
| 116 | - ./ntsim-ng-o-ru/ntsim-ng-o-ru-fh-3/ietf-interfaces-operational.xml:/opt/dev/deploy/data/ietf-interfaces-operational.xml |
| 117 | - ./ntsim-ng-o-ru/ntsim-ng-o-ru-fh-3/ietf-interfaces-running.xml:/opt/dev/deploy/data/ietf-interfaces-running.xml |
| 118 | environment: |
| 119 | <<: *common_env |
| 120 | <<: *ru_env |
| 121 | |
demx8as6 | a93cb37 | 2021-06-06 16:05:58 +0200 | [diff] [blame] | 122 | networks: |
| 123 | default: |
| 124 | external: |
| 125 | name: oam |