blob: 2ecd456fc5586a73a95dcd7d47d63ceccbdee573 [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)
JosephKeenan1c908482022-06-16 16:19:09 +010023 ### to disable notifications make notification.enabled to false & comment out kafka/zookeeper services ###
Ruslan Kashapov1e5bd942021-01-22 12:53:01 +020024
Claudio David Gasparini900ba022020-11-08 22:18:36 +010025 dbpostgresql:
26 container_name: dbpostgresql
DylanB95EST6c26ba62022-08-04 13:25:31 +010027 image: postgres:14.1-alpine
Claudio David Gasparini900ba022020-11-08 22:18:36 +010028 ports:
puthuparambil.aditya73d58862022-01-28 13:22:33 +000029 - ${DB_PORT:-5432}:5432
Claudio David Gasparini900ba022020-11-08 22:18:36 +010030 environment:
Claudio David Gasparini5faa49c2020-11-12 08:28:07 +010031 POSTGRES_DB: cpsdb
Bruno Sakoto6658f502021-07-01 22:28:17 -040032 POSTGRES_USER: ${DB_USERNAME:-cps}
33 POSTGRES_PASSWORD: ${DB_PASSWORD:-cps}
danielhanrahan4e2c9272024-03-14 18:02:09 +000034 volumes:
35 - ./postgres-init.sql:/docker-entrypoint-initdb.d/postgres-init.sql
danielhanrahan9d152cb2024-01-29 13:44:13 +000036 deploy:
37 resources:
38 reservations:
39 cpus: '1'
40 memory: 1G
41 limits:
42 cpus: '6'
43 memory: 3G
Renu Kumariff52b942021-05-27 23:16:32 -040044
JosephKeenand181b0e2021-10-01 10:40:47 +010045 cps-and-ncmp:
tragaitdd6021e2021-10-19 16:46:21 +010046 image: ${DOCKER_REPO:-nexus3.onap.org:10003}/onap/cps-and-ncmp:${CPS_VERSION:-latest}
JosephKeenand181b0e2021-10-01 10:40:47 +010047 environment:
tragaitdd6021e2021-10-19 16:46:21 +010048 CPS_USERNAME: ${CPS_CORE_USERNAME:-cpsuser}
49 CPS_PASSWORD: ${CPS_CORE_PASSWORD:-cpsr0cks!}
DylanB95EST4472bef2021-11-03 11:20:07 +000050 DB_HOST: ${DB_HOST:-dbpostgresql}
JosephKeenand181b0e2021-10-01 10:40:47 +010051 DB_USERNAME: ${DB_USERNAME:-cps}
52 DB_PASSWORD: ${DB_PASSWORD:-cps}
53 DMI_USERNAME: ${DMI_USERNAME:-cpsuser}
54 DMI_PASSWORD: ${DMI_PASSWORD:-cpsr0cks!}
halil.cakal1340c572023-04-12 15:19:45 +010055 KAFKA_BOOTSTRAP_SERVER: kafka:29092
JosephKeenan1c908482022-06-16 16:19:09 +010056 notification.enabled: 'true'
JosephKeenand181b0e2021-10-01 10:40:47 +010057 restart: unless-stopped
58 depends_on:
JosephKeenanf31c7f82022-05-24 18:59:25 +010059 - dbpostgresql
danielhanrahan9d152cb2024-01-29 13:44:13 +000060 deploy:
halil.cakal3a9613f2024-06-17 09:24:59 +010061 replicas: 2
danielhanrahan9d152cb2024-01-29 13:44:13 +000062 resources:
63 reservations:
64 cpus: '2'
65 memory: 2G
66 limits:
67 cpus: '3'
68 memory: 3G
JosephKeenanf31c7f82022-05-24 18:59:25 +010069
halil.cakal3a9613f2024-06-17 09:24:59 +010070 nginx:
71 container_name: nginx-loadbalancer
72 image: nginx:latest
73 ports:
74 - ${CPS_CORE_PORT:-8883}:80
75 depends_on:
76 - cps-and-ncmp
77 volumes:
78 - ./nginx.conf:/etc/nginx/nginx.conf
79 - ./proxy_params:/etc/nginx/proxy_params
halil.cakal3a9613f2024-06-17 09:24:59 +010080
JosephKeenanf31c7f82022-05-24 18:59:25 +010081 ### if kafka is not required comment out zookeeper and kafka ###
82 zookeeper:
83 image: confluentinc/cp-zookeeper:6.2.1
84 container_name: zookeeper
85 ports:
86 - '2181:2181'
87 environment:
88 ZOOKEEPER_CLIENT_PORT: 2181
89
90 kafka:
91 image: confluentinc/cp-kafka:6.2.1
92 container_name: kafka
93 ports:
halil.cakal1340c572023-04-12 15:19:45 +010094 - '9092:9092'
JosephKeenanf31c7f82022-05-24 18:59:25 +010095 depends_on:
96 - zookeeper
97 environment:
98 KAFKA_BROKER_ID: 1
99 KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
JosephKeenanf31c7f82022-05-24 18:59:25 +0100100 KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,CONNECTIONS_FROM_HOST:PLAINTEXT
halil.cakal1340c572023-04-12 15:19:45 +0100101 KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka:29092,CONNECTIONS_FROM_HOST://localhost:9092
JosephKeenanf31c7f82022-05-24 18:59:25 +0100102 KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
103
JosephKeenanf31c7f82022-05-24 18:59:25 +0100104 ncmp-dmi-plugin:
105 container_name: ncmp-dmi-plugin
mpriyank35e0df32024-06-14 15:02:53 +0100106 image: ${DOCKER_REPO:-nexus3.onap.org:10003}/onap/ncmp-dmi-plugin:${DMI_VERSION:-1.6.0-SNAPSHOT-latest}
JosephKeenanf31c7f82022-05-24 18:59:25 +0100107 ports:
108 - ${DMI_PORT:-8783}:8080
JosephKeenanf31c7f82022-05-24 18:59:25 +0100109 environment:
110 CPS_USERNAME: ${CPS_CORE_USERNAME:-cpsuser}
111 CPS_PASSWORD: ${CPS_CORE_PASSWORD:-cpsr0cks!}
112 CPS_CORE_HOST: ${CPS_CORE_HOST:-cps-and-ncmp}
113 CPS_CORE_PORT: ${CPS_CORE_PORT:-8080}
114 CPS_CORE_USERNAME: ${CPS_CORE_USERNAME:-cpsuser}
115 CPS_CORE_PASSWORD: ${CPS_CORE_PASSWORD:-cpsr0cks!}
116 SDNC_HOST: ${SDNC_HOST:-sdnc}
117 SDNC_PORT: ${SDNC_PORT:-8181}
118 SDNC_USERNAME: ${SDNC_USERNAME:-admin}
119 SDNC_PASSWORD: ${SDNC_PASSWORD:-Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U}
120 DMI_SERVICE_URL: ${DMI_SERVICE_URL:-http://ncmp-dmi-plugin:8783}
halil.cakal1340c572023-04-12 15:19:45 +0100121 DMI_SERVICE_NAME: ${DMI_SERVICE_NAME:-dminame1}
JosephKeenanf31c7f82022-05-24 18:59:25 +0100122 DMI_USERNAME: ${DMI_USERNAME:-cpsuser}
123 DMI_PASSWORD: ${DMI_PASSWORD:-cpsr0cks!}
halil.cakal1340c572023-04-12 15:19:45 +0100124 KAFKA_BOOTSTRAP_SERVER: kafka:29092
JosephKeenanf31c7f82022-05-24 18:59:25 +0100125 restart: unless-stopped
ToineSiebelinkb2c8bc62023-02-07 10:30:03 +0000126 profiles:
127 - dmi-service
128
sourabh_sourabh7cda5e92023-07-05 00:56:05 +0100129 ncmp-dmi-plugin-demo-and-csit-stub:
130 container_name: ncmp-dmi-plugin-demo-and-csit-stub
131 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 +0000132 ports:
sourabh_sourabh7cda5e92023-07-05 00:56:05 +0100133 - ${DMI_DEMO_STUB_PORT:-8784}:8092
134 environment:
halil.cakal1340c572023-04-12 15:19:45 +0100135 KAFKA_BOOTSTRAP_SERVER: kafka:29092
sourabh_sourabh7cda5e92023-07-05 00:56:05 +0100136 NCMP_CONSUMER_GROUP_ID: ncmp-group
137 NCMP_ASYNC_M2M_TOPIC: ncmp-async-m2m
JvD_Ericsson1516fa02024-01-31 13:47:28 +0000138 MODULE_REFERENCES_DELAY_MS: 100
139 MODULE_RESOURCES_DELAY_MS: 1000
140 DATA_FOR_CM_HANDLE_DELAY_MS: 2500
ToineSiebelinkb2c8bc62023-02-07 10:30:03 +0000141 restart: unless-stopped
142 profiles:
143 - dmi-stub
sourabh_sourabh7cda5e92023-07-05 00:56:05 +0100144 - dmi-service
emacleef6f16f52023-01-25 12:18:15 +0000145
ToineSiebelinkd7914bc2024-07-04 15:15:36 +0100146 policy-executor-stub:
147 container_name: policy-executor-stub
148 image: ${DOCKER_REPO:-nexus3.onap.org:10003}/onap/policy-executor-stub:latest
149 ports:
150 - 8785:8080
151 restart: unless-stopped
152 profiles:
153 - policy-executor-stub
154
ToineSiebelinkb2c8bc62023-02-07 10:30:03 +0000155 prometheus:
156 container_name: prometheus-container
157 image: prom/prometheus:latest
158 ports:
159 - 9090:9090
160 restart: always
161 volumes:
162 - ./prometheus.yml:/etc/prometheus/prometheus.yml
163 profiles:
164 - monitoring
165
166 grafana:
167 image: grafana/grafana-oss:latest
168 user: ""
169 container_name: grafana-container
170 depends_on:
171 prometheus:
172 condition: service_started
173 ports:
174 - 3000:3000
175 volumes:
176 - grafana:/var/lib/grafana
177 environment:
178 - GF_SECURITY_ADMIN_PASSWORD=admin
179 - GF_SERVER_DOMAIN:localhost
180 profiles:
181 - monitoring
182
183volumes:
184 grafana: