blob: 1e47d47382d1fbd85959c1dbcd750cc4949e7609 [file] [log] [blame]
Claudio D. Gasparini4e07d482021-02-11 08:51:06 +01001# ============LICENSE_START=======================================================
2# Copyright (c) 2020 Pantheon.tech.
3# Modifications Copyright (C) 2021 Bell Canada.
danielhanrahan9d152cb2024-01-29 13:44:13 +00004# Modifications Copyright (C) 2022-2024 Nordix Foundation.
Claudio D. Gasparini4e07d482021-02-11 08:51:06 +01005# ================================================================================
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 Gasparini900ba022020-11-08 22:18:36 +010019services:
JosephKeenand181b0e2021-10-01 10:40:47 +010020
ToineSiebelinkb2c8bc62023-02-07 10:30:03 +000021 ### 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)
sourabh_sourabhe2527ea2024-07-19 17:27:54 +010023 ### docker-compose --profile dmi-stub --profile tracing up -d -> run CPS with stubbed dmi-plugin (for open telemetry tracing testing make ONAP_TRACING_ENABLED "true" later "http://localhost:16686" can be accessed from browser)
ToineSiebelink6191d412024-09-16 15:42:30 +010024 ### docker-compose --profile dmi-stub --profile policy-executor-stub up -d -> run CPS with stubbed dmi-plugin and policy executor stub (for policy executor service testing make POLICY_SERVICE_ENABLED "true")
JosephKeenan1c908482022-06-16 16:19:09 +010025 ### to disable notifications make notification.enabled to false & comment out kafka/zookeeper services ###
Ruslan Kashapov1e5bd942021-01-22 12:53:01 +020026
Claudio David Gasparini900ba022020-11-08 22:18:36 +010027 dbpostgresql:
28 container_name: dbpostgresql
DylanB95EST6c26ba62022-08-04 13:25:31 +010029 image: postgres:14.1-alpine
Claudio David Gasparini900ba022020-11-08 22:18:36 +010030 ports:
puthuparambil.aditya73d58862022-01-28 13:22:33 +000031 - ${DB_PORT:-5432}:5432
Claudio David Gasparini900ba022020-11-08 22:18:36 +010032 environment:
Claudio David Gasparini5faa49c2020-11-12 08:28:07 +010033 POSTGRES_DB: cpsdb
Bruno Sakoto6658f502021-07-01 22:28:17 -040034 POSTGRES_USER: ${DB_USERNAME:-cps}
35 POSTGRES_PASSWORD: ${DB_PASSWORD:-cps}
danielhanrahan4e2c9272024-03-14 18:02:09 +000036 volumes:
danielhanrahanfe226882024-08-23 13:29:11 +010037 - ./config/postgres-init.sql:/docker-entrypoint-initdb.d/postgres-init.sql
danielhanrahan9d152cb2024-01-29 13:44:13 +000038 deploy:
39 resources:
40 reservations:
41 cpus: '1'
42 memory: 1G
43 limits:
44 cpus: '6'
45 memory: 3G
Renu Kumariff52b942021-05-27 23:16:32 -040046
JosephKeenand181b0e2021-10-01 10:40:47 +010047 cps-and-ncmp:
tragaitdd6021e2021-10-19 16:46:21 +010048 image: ${DOCKER_REPO:-nexus3.onap.org:10003}/onap/cps-and-ncmp:${CPS_VERSION:-latest}
JosephKeenand181b0e2021-10-01 10:40:47 +010049 environment:
tragaitdd6021e2021-10-19 16:46:21 +010050 CPS_USERNAME: ${CPS_CORE_USERNAME:-cpsuser}
51 CPS_PASSWORD: ${CPS_CORE_PASSWORD:-cpsr0cks!}
DylanB95EST4472bef2021-11-03 11:20:07 +000052 DB_HOST: ${DB_HOST:-dbpostgresql}
JosephKeenand181b0e2021-10-01 10:40:47 +010053 DB_USERNAME: ${DB_USERNAME:-cps}
54 DB_PASSWORD: ${DB_PASSWORD:-cps}
55 DMI_USERNAME: ${DMI_USERNAME:-cpsuser}
56 DMI_PASSWORD: ${DMI_PASSWORD:-cpsr0cks!}
halil.cakal1340c572023-04-12 15:19:45 +010057 KAFKA_BOOTSTRAP_SERVER: kafka:29092
JosephKeenan1c908482022-06-16 16:19:09 +010058 notification.enabled: 'true'
sourabh_sourabhe2527ea2024-07-19 17:27:54 +010059 ONAP_TRACING_ENABLED: 'false'
60 ONAP_OTEL_SAMPLER_JAEGER_REMOTE_ENDPOINT: http://jaeger-service:14250
61 ONAP_OTEL_EXPORTER_ENDPOINT: http://jaeger-service:4317
ToineSiebelink6191d412024-09-16 15:42:30 +010062 POLICY_SERVICE_ENABLED: 'false'
JosephKeenand181b0e2021-10-01 10:40:47 +010063 restart: unless-stopped
64 depends_on:
JosephKeenanf31c7f82022-05-24 18:59:25 +010065 - dbpostgresql
danielhanrahan9d152cb2024-01-29 13:44:13 +000066 deploy:
halil.cakal3a9613f2024-06-17 09:24:59 +010067 replicas: 2
danielhanrahan9d152cb2024-01-29 13:44:13 +000068 resources:
69 reservations:
70 cpus: '2'
71 memory: 2G
72 limits:
73 cpus: '3'
74 memory: 3G
JosephKeenanf31c7f82022-05-24 18:59:25 +010075
halil.cakal3a9613f2024-06-17 09:24:59 +010076 nginx:
77 container_name: nginx-loadbalancer
78 image: nginx:latest
79 ports:
80 - ${CPS_CORE_PORT:-8883}:80
81 depends_on:
82 - cps-and-ncmp
83 volumes:
danielhanrahanfe226882024-08-23 13:29:11 +010084 - ./config/nginx/nginx.conf:/etc/nginx/nginx.conf
85 - ./config/nginx/proxy_params:/etc/nginx/proxy_params
halil.cakal3a9613f2024-06-17 09:24:59 +010086
JosephKeenanf31c7f82022-05-24 18:59:25 +010087 ### if kafka is not required comment out zookeeper and kafka ###
88 zookeeper:
89 image: confluentinc/cp-zookeeper:6.2.1
90 container_name: zookeeper
91 ports:
92 - '2181:2181'
93 environment:
94 ZOOKEEPER_CLIENT_PORT: 2181
95
96 kafka:
97 image: confluentinc/cp-kafka:6.2.1
98 container_name: kafka
99 ports:
halil.cakal1340c572023-04-12 15:19:45 +0100100 - '9092:9092'
JosephKeenanf31c7f82022-05-24 18:59:25 +0100101 depends_on:
102 - zookeeper
103 environment:
104 KAFKA_BROKER_ID: 1
105 KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
JosephKeenanf31c7f82022-05-24 18:59:25 +0100106 KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,CONNECTIONS_FROM_HOST:PLAINTEXT
halil.cakal1340c572023-04-12 15:19:45 +0100107 KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka:29092,CONNECTIONS_FROM_HOST://localhost:9092
JosephKeenanf31c7f82022-05-24 18:59:25 +0100108 KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
109
JosephKeenanf31c7f82022-05-24 18:59:25 +0100110 ncmp-dmi-plugin:
111 container_name: ncmp-dmi-plugin
mpriyank35e0df32024-06-14 15:02:53 +0100112 image: ${DOCKER_REPO:-nexus3.onap.org:10003}/onap/ncmp-dmi-plugin:${DMI_VERSION:-1.6.0-SNAPSHOT-latest}
JosephKeenanf31c7f82022-05-24 18:59:25 +0100113 ports:
114 - ${DMI_PORT:-8783}:8080
JosephKeenanf31c7f82022-05-24 18:59:25 +0100115 environment:
116 CPS_USERNAME: ${CPS_CORE_USERNAME:-cpsuser}
117 CPS_PASSWORD: ${CPS_CORE_PASSWORD:-cpsr0cks!}
118 CPS_CORE_HOST: ${CPS_CORE_HOST:-cps-and-ncmp}
119 CPS_CORE_PORT: ${CPS_CORE_PORT:-8080}
120 CPS_CORE_USERNAME: ${CPS_CORE_USERNAME:-cpsuser}
121 CPS_CORE_PASSWORD: ${CPS_CORE_PASSWORD:-cpsr0cks!}
122 SDNC_HOST: ${SDNC_HOST:-sdnc}
123 SDNC_PORT: ${SDNC_PORT:-8181}
124 SDNC_USERNAME: ${SDNC_USERNAME:-admin}
125 SDNC_PASSWORD: ${SDNC_PASSWORD:-Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U}
126 DMI_SERVICE_URL: ${DMI_SERVICE_URL:-http://ncmp-dmi-plugin:8783}
halil.cakal1340c572023-04-12 15:19:45 +0100127 DMI_SERVICE_NAME: ${DMI_SERVICE_NAME:-dminame1}
JosephKeenanf31c7f82022-05-24 18:59:25 +0100128 DMI_USERNAME: ${DMI_USERNAME:-cpsuser}
129 DMI_PASSWORD: ${DMI_PASSWORD:-cpsr0cks!}
halil.cakal1340c572023-04-12 15:19:45 +0100130 KAFKA_BOOTSTRAP_SERVER: kafka:29092
JosephKeenanf31c7f82022-05-24 18:59:25 +0100131 restart: unless-stopped
ToineSiebelinkb2c8bc62023-02-07 10:30:03 +0000132 profiles:
133 - dmi-service
134
sourabh_sourabh7cda5e92023-07-05 00:56:05 +0100135 ncmp-dmi-plugin-demo-and-csit-stub:
136 container_name: ncmp-dmi-plugin-demo-and-csit-stub
137 image: ${DOCKER_REPO:-nexus3.onap.org:10003}/onap/dmi-plugin-demo-and-csit-stub:${DMI_DEMO_STUB_VERSION:-latest}
ToineSiebelinkb2c8bc62023-02-07 10:30:03 +0000138 ports:
sourabh_sourabh7cda5e92023-07-05 00:56:05 +0100139 - ${DMI_DEMO_STUB_PORT:-8784}:8092
140 environment:
halil.cakal1340c572023-04-12 15:19:45 +0100141 KAFKA_BOOTSTRAP_SERVER: kafka:29092
sourabh_sourabh7cda5e92023-07-05 00:56:05 +0100142 NCMP_CONSUMER_GROUP_ID: ncmp-group
143 NCMP_ASYNC_M2M_TOPIC: ncmp-async-m2m
sourabh_sourabhd3224722024-09-04 14:02:17 +0100144 MODULE_INITIAL_PROCESSING_DELAY_MS: 0
JvD_Ericsson1516fa02024-01-31 13:47:28 +0000145 MODULE_REFERENCES_DELAY_MS: 100
146 MODULE_RESOURCES_DELAY_MS: 1000
halil.cakala9ee0ab2024-07-16 13:53:05 +0100147 READ_DATA_FOR_CM_HANDLE_DELAY_MS: 300
148 WRITE_DATA_FOR_CM_HANDLE_DELAY_MS: 670
ToineSiebelinkb2c8bc62023-02-07 10:30:03 +0000149 restart: unless-stopped
150 profiles:
151 - dmi-stub
sourabh_sourabh7cda5e92023-07-05 00:56:05 +0100152 - dmi-service
emacleef6f16f52023-01-25 12:18:15 +0000153
ToineSiebelinkd7914bc2024-07-04 15:15:36 +0100154 policy-executor-stub:
155 container_name: policy-executor-stub
156 image: ${DOCKER_REPO:-nexus3.onap.org:10003}/onap/policy-executor-stub:latest
157 ports:
ToineSiebelink6191d412024-09-16 15:42:30 +0100158 - 8785:8093
ToineSiebelinkd7914bc2024-07-04 15:15:36 +0100159 restart: unless-stopped
160 profiles:
161 - policy-executor-stub
162
ToineSiebelinkb2c8bc62023-02-07 10:30:03 +0000163 prometheus:
danielhanrahanfe226882024-08-23 13:29:11 +0100164 container_name: prometheus
ToineSiebelinkb2c8bc62023-02-07 10:30:03 +0000165 image: prom/prometheus:latest
166 ports:
167 - 9090:9090
168 restart: always
169 volumes:
danielhanrahanfe226882024-08-23 13:29:11 +0100170 - ./config/prometheus.yml:/etc/prometheus/prometheus.yml
ToineSiebelinkb2c8bc62023-02-07 10:30:03 +0000171 profiles:
172 - monitoring
173
174 grafana:
175 image: grafana/grafana-oss:latest
176 user: ""
danielhanrahanfe226882024-08-23 13:29:11 +0100177 container_name: grafana
ToineSiebelinkb2c8bc62023-02-07 10:30:03 +0000178 depends_on:
179 prometheus:
180 condition: service_started
181 ports:
182 - 3000:3000
183 volumes:
danielhanrahanfe226882024-08-23 13:29:11 +0100184 - ./config/grafana/provisioning/:/etc/grafana/provisioning/
185 - ./config/grafana/jvm-micrometer-dashboard.json:/var/lib/grafana/dashboards/jvm-micrometer-dashboard.json
ToineSiebelinkb2c8bc62023-02-07 10:30:03 +0000186 - grafana:/var/lib/grafana
187 environment:
188 - GF_SECURITY_ADMIN_PASSWORD=admin
189 - GF_SERVER_DOMAIN:localhost
190 profiles:
191 - monitoring
192
halil.cakal65b870b2024-07-25 11:12:29 +0100193 kafka-ui:
194 container_name: kafka-ui
195 image: provectuslabs/kafka-ui:latest
196 ports:
197 - 8089:8080
198 environment:
199 DYNAMIC_CONFIG_ENABLED: 'true'
200 KAFKA_CLUSTERS_0_NAME: 'cps-kafka-local'
201 KAFKA_CLUSTERS_0_BOOTSTRAPSERVERS: kafka:29092
202 profiles:
203 - monitoring
204
sourabh_sourabhe2527ea2024-07-19 17:27:54 +0100205 jaeger-service:
206 container_name: jaeger-service
207 image: jaegertracing/all-in-one:latest
208 ports:
209 - 16686:16686
210 restart: unless-stopped
211 profiles:
212 - tracing
213
ToineSiebelinkb2c8bc62023-02-07 10:30:03 +0000214volumes:
215 grafana: