Claudio D. Gasparini | 4e07d48 | 2021-02-11 08:51:06 +0100 | [diff] [blame] | 1 | # ============LICENSE_START======================================================= |
| 2 | # Copyright (c) 2020 Pantheon.tech. |
| 3 | # Modifications Copyright (C) 2021 Bell Canada. |
emaclee | f6f16f5 | 2023-01-25 12:18:15 +0000 | [diff] [blame] | 4 | # Modifications Copyright (C) 2022-2023 Nordix Foundation. |
Claudio D. Gasparini | 4e07d48 | 2021-02-11 08:51:06 +0100 | [diff] [blame] | 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 | |
Claudio David Gasparini | 900ba02 | 2020-11-08 22:18:36 +0100 | [diff] [blame] | 19 | services: |
JosephKeenan | d181b0e | 2021-10-01 10:40:47 +0100 | [diff] [blame] | 20 | |
ToineSiebelink | b2c8bc6 | 2023-02-07 10:30:03 +0000 | [diff] [blame] | 21 | ### docker-compose --profile dmi-service up -d -> run CPS services incl. dmi-plugin ### |
| 22 | ### docker-compose --profile dmi-stub --profile monitoring up -d -> run CPS with stubbed dmi-plugin (for registration performance testing) |
JosephKeenan | 1c90848 | 2022-06-16 16:19:09 +0100 | [diff] [blame] | 23 | ### to disable notifications make notification.enabled to false & comment out kafka/zookeeper services ### |
Ruslan Kashapov | 1e5bd94 | 2021-01-22 12:53:01 +0200 | [diff] [blame] | 24 | |
Claudio David Gasparini | 900ba02 | 2020-11-08 22:18:36 +0100 | [diff] [blame] | 25 | dbpostgresql: |
| 26 | container_name: dbpostgresql |
DylanB95EST | 6c26ba6 | 2022-08-04 13:25:31 +0100 | [diff] [blame] | 27 | image: postgres:14.1-alpine |
Claudio David Gasparini | 900ba02 | 2020-11-08 22:18:36 +0100 | [diff] [blame] | 28 | ports: |
puthuparambil.aditya | 73d5886 | 2022-01-28 13:22:33 +0000 | [diff] [blame] | 29 | - ${DB_PORT:-5432}:5432 |
Claudio David Gasparini | 900ba02 | 2020-11-08 22:18:36 +0100 | [diff] [blame] | 30 | environment: |
Claudio David Gasparini | 5faa49c | 2020-11-12 08:28:07 +0100 | [diff] [blame] | 31 | POSTGRES_DB: cpsdb |
Bruno Sakoto | 6658f50 | 2021-07-01 22:28:17 -0400 | [diff] [blame] | 32 | POSTGRES_USER: ${DB_USERNAME:-cps} |
| 33 | POSTGRES_PASSWORD: ${DB_PASSWORD:-cps} |
Renu Kumari | ff52b94 | 2021-05-27 23:16:32 -0400 | [diff] [blame] | 34 | |
JosephKeenan | d181b0e | 2021-10-01 10:40:47 +0100 | [diff] [blame] | 35 | cps-and-ncmp: |
| 36 | container_name: cps-and-ncmp |
tragait | dd6021e | 2021-10-19 16:46:21 +0100 | [diff] [blame] | 37 | image: ${DOCKER_REPO:-nexus3.onap.org:10003}/onap/cps-and-ncmp:${CPS_VERSION:-latest} |
JosephKeenan | d181b0e | 2021-10-01 10:40:47 +0100 | [diff] [blame] | 38 | ports: |
tragait | dd6021e | 2021-10-19 16:46:21 +0100 | [diff] [blame] | 39 | - ${CPS_CORE_PORT:-8883}:8080 |
halil.cakal | d27dc54 | 2023-10-10 17:51:27 +0100 | [diff] [blame] | 40 | - ${CPS_CORE_DEBUG_PORT:-5005}:5005 |
JosephKeenan | d181b0e | 2021-10-01 10:40:47 +0100 | [diff] [blame] | 41 | environment: |
tragait | dd6021e | 2021-10-19 16:46:21 +0100 | [diff] [blame] | 42 | CPS_USERNAME: ${CPS_CORE_USERNAME:-cpsuser} |
| 43 | CPS_PASSWORD: ${CPS_CORE_PASSWORD:-cpsr0cks!} |
DylanB95EST | 4472bef | 2021-11-03 11:20:07 +0000 | [diff] [blame] | 44 | DB_HOST: ${DB_HOST:-dbpostgresql} |
JosephKeenan | d181b0e | 2021-10-01 10:40:47 +0100 | [diff] [blame] | 45 | DB_USERNAME: ${DB_USERNAME:-cps} |
| 46 | DB_PASSWORD: ${DB_PASSWORD:-cps} |
| 47 | DMI_USERNAME: ${DMI_USERNAME:-cpsuser} |
| 48 | DMI_PASSWORD: ${DMI_PASSWORD:-cpsr0cks!} |
halil.cakal | 1340c57 | 2023-04-12 15:19:45 +0100 | [diff] [blame] | 49 | KAFKA_BOOTSTRAP_SERVER: kafka:29092 |
JosephKeenan | 1c90848 | 2022-06-16 16:19:09 +0100 | [diff] [blame] | 50 | notification.enabled: 'true' |
| 51 | notification.async.executor.time-out-value-in-ms: 2000 |
JosephKeenan | f31c7f8 | 2022-05-24 18:59:25 +0100 | [diff] [blame] | 52 | NOTIFICATION_DATASPACE_FILTER_PATTERNS: '.*' |
mpriyank | 107dbd8 | 2022-09-19 15:56:39 +0100 | [diff] [blame] | 53 | NCMP_TIMERS_ADVISED-MODULES-SYNC_SLEEP-TIME-MS: ${ADVISED_MODULES_SYNC_SLEEP_TIME_MS:-30000} |
| 54 | NCMP_TIMERS_CM-HANDLE-DATA-SYNC_SLEEP-TIME-MS: ${CMHANDLE_DATA_SYNC_SLEEP_TIME_MS:-30000} |
halil.cakal | d27dc54 | 2023-10-10 17:51:27 +0100 | [diff] [blame] | 55 | JAVA_TOOL_OPTIONS: -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:5005 |
JosephKeenan | d181b0e | 2021-10-01 10:40:47 +0100 | [diff] [blame] | 56 | restart: unless-stopped |
| 57 | depends_on: |
JosephKeenan | f31c7f8 | 2022-05-24 18:59:25 +0100 | [diff] [blame] | 58 | - dbpostgresql |
| 59 | |
| 60 | ### if kafka is not required comment out zookeeper and kafka ### |
| 61 | zookeeper: |
| 62 | image: confluentinc/cp-zookeeper:6.2.1 |
| 63 | container_name: zookeeper |
| 64 | ports: |
| 65 | - '2181:2181' |
| 66 | environment: |
| 67 | ZOOKEEPER_CLIENT_PORT: 2181 |
| 68 | |
| 69 | kafka: |
| 70 | image: confluentinc/cp-kafka:6.2.1 |
| 71 | container_name: kafka |
| 72 | ports: |
halil.cakal | 1340c57 | 2023-04-12 15:19:45 +0100 | [diff] [blame] | 73 | - '9092:9092' |
JosephKeenan | f31c7f8 | 2022-05-24 18:59:25 +0100 | [diff] [blame] | 74 | depends_on: |
| 75 | - zookeeper |
| 76 | environment: |
| 77 | KAFKA_BROKER_ID: 1 |
| 78 | KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181 |
JosephKeenan | f31c7f8 | 2022-05-24 18:59:25 +0100 | [diff] [blame] | 79 | KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,CONNECTIONS_FROM_HOST:PLAINTEXT |
halil.cakal | 1340c57 | 2023-04-12 15:19:45 +0100 | [diff] [blame] | 80 | KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka:29092,CONNECTIONS_FROM_HOST://localhost:9092 |
JosephKeenan | f31c7f8 | 2022-05-24 18:59:25 +0100 | [diff] [blame] | 81 | KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1 |
| 82 | |
JosephKeenan | f31c7f8 | 2022-05-24 18:59:25 +0100 | [diff] [blame] | 83 | ncmp-dmi-plugin: |
| 84 | container_name: ncmp-dmi-plugin |
halil.cakal | 9f3ee9f | 2023-05-16 11:06:57 +0100 | [diff] [blame] | 85 | image: ${DOCKER_REPO:-nexus3.onap.org:10003}/onap/ncmp-dmi-plugin:${DMI_VERSION:-1.4.0-SNAPSHOT-latest} |
JosephKeenan | f31c7f8 | 2022-05-24 18:59:25 +0100 | [diff] [blame] | 86 | ports: |
| 87 | - ${DMI_PORT:-8783}:8080 |
JosephKeenan | f31c7f8 | 2022-05-24 18:59:25 +0100 | [diff] [blame] | 88 | environment: |
| 89 | CPS_USERNAME: ${CPS_CORE_USERNAME:-cpsuser} |
| 90 | CPS_PASSWORD: ${CPS_CORE_PASSWORD:-cpsr0cks!} |
| 91 | CPS_CORE_HOST: ${CPS_CORE_HOST:-cps-and-ncmp} |
| 92 | CPS_CORE_PORT: ${CPS_CORE_PORT:-8080} |
| 93 | CPS_CORE_USERNAME: ${CPS_CORE_USERNAME:-cpsuser} |
| 94 | CPS_CORE_PASSWORD: ${CPS_CORE_PASSWORD:-cpsr0cks!} |
| 95 | SDNC_HOST: ${SDNC_HOST:-sdnc} |
| 96 | SDNC_PORT: ${SDNC_PORT:-8181} |
| 97 | SDNC_USERNAME: ${SDNC_USERNAME:-admin} |
| 98 | SDNC_PASSWORD: ${SDNC_PASSWORD:-Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U} |
| 99 | DMI_SERVICE_URL: ${DMI_SERVICE_URL:-http://ncmp-dmi-plugin:8783} |
halil.cakal | 1340c57 | 2023-04-12 15:19:45 +0100 | [diff] [blame] | 100 | DMI_SERVICE_NAME: ${DMI_SERVICE_NAME:-dminame1} |
JosephKeenan | f31c7f8 | 2022-05-24 18:59:25 +0100 | [diff] [blame] | 101 | DMI_USERNAME: ${DMI_USERNAME:-cpsuser} |
| 102 | DMI_PASSWORD: ${DMI_PASSWORD:-cpsr0cks!} |
halil.cakal | 1340c57 | 2023-04-12 15:19:45 +0100 | [diff] [blame] | 103 | KAFKA_BOOTSTRAP_SERVER: kafka:29092 |
JosephKeenan | f31c7f8 | 2022-05-24 18:59:25 +0100 | [diff] [blame] | 104 | notification.data-updated.enabled: 'true' |
| 105 | NOTIFICATION_DATASPACE_FILTER_PATTERNS: '.*' |
| 106 | restart: unless-stopped |
ToineSiebelink | b2c8bc6 | 2023-02-07 10:30:03 +0000 | [diff] [blame] | 107 | profiles: |
| 108 | - dmi-service |
| 109 | |
sourabh_sourabh | 7cda5e9 | 2023-07-05 00:56:05 +0100 | [diff] [blame] | 110 | ncmp-dmi-plugin-demo-and-csit-stub: |
| 111 | container_name: ncmp-dmi-plugin-demo-and-csit-stub |
| 112 | image: ${DOCKER_REPO:-nexus3.onap.org:10003}/onap/dmi-plugin-demo-and-csit-stub:${DMI_DEMO_STUB_VERSION:-latest} |
ToineSiebelink | b2c8bc6 | 2023-02-07 10:30:03 +0000 | [diff] [blame] | 113 | ports: |
sourabh_sourabh | 7cda5e9 | 2023-07-05 00:56:05 +0100 | [diff] [blame] | 114 | - ${DMI_DEMO_STUB_PORT:-8784}:8092 |
| 115 | environment: |
halil.cakal | 1340c57 | 2023-04-12 15:19:45 +0100 | [diff] [blame] | 116 | KAFKA_BOOTSTRAP_SERVER: kafka:29092 |
sourabh_sourabh | 7cda5e9 | 2023-07-05 00:56:05 +0100 | [diff] [blame] | 117 | NCMP_CONSUMER_GROUP_ID: ncmp-group |
| 118 | NCMP_ASYNC_M2M_TOPIC: ncmp-async-m2m |
ToineSiebelink | b2c8bc6 | 2023-02-07 10:30:03 +0000 | [diff] [blame] | 119 | restart: unless-stopped |
| 120 | profiles: |
| 121 | - dmi-stub |
sourabh_sourabh | 7cda5e9 | 2023-07-05 00:56:05 +0100 | [diff] [blame] | 122 | - dmi-service |
emaclee | f6f16f5 | 2023-01-25 12:18:15 +0000 | [diff] [blame] | 123 | |
ToineSiebelink | b2c8bc6 | 2023-02-07 10:30:03 +0000 | [diff] [blame] | 124 | prometheus: |
| 125 | container_name: prometheus-container |
| 126 | image: prom/prometheus:latest |
| 127 | ports: |
| 128 | - 9090:9090 |
| 129 | restart: always |
| 130 | volumes: |
| 131 | - ./prometheus.yml:/etc/prometheus/prometheus.yml |
| 132 | profiles: |
| 133 | - monitoring |
| 134 | |
| 135 | grafana: |
| 136 | image: grafana/grafana-oss:latest |
| 137 | user: "" |
| 138 | container_name: grafana-container |
| 139 | depends_on: |
| 140 | prometheus: |
| 141 | condition: service_started |
| 142 | ports: |
| 143 | - 3000:3000 |
| 144 | volumes: |
| 145 | - grafana:/var/lib/grafana |
| 146 | environment: |
| 147 | - GF_SECURITY_ADMIN_PASSWORD=admin |
| 148 | - GF_SERVER_DOMAIN:localhost |
| 149 | profiles: |
| 150 | - monitoring |
| 151 | |
| 152 | volumes: |
| 153 | grafana: |