blob: 2607385de74b6ef9ac639d39f33d933df3583a34 [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.
emacleef6f16f52023-01-25 12:18:15 +00004# Modifications Copyright (C) 2022-2023 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}
Renu Kumariff52b942021-05-27 23:16:32 -040034
JosephKeenand181b0e2021-10-01 10:40:47 +010035 cps-and-ncmp:
36 container_name: cps-and-ncmp
tragaitdd6021e2021-10-19 16:46:21 +010037 image: ${DOCKER_REPO:-nexus3.onap.org:10003}/onap/cps-and-ncmp:${CPS_VERSION:-latest}
JosephKeenand181b0e2021-10-01 10:40:47 +010038 ports:
tragaitdd6021e2021-10-19 16:46:21 +010039 - ${CPS_CORE_PORT:-8883}:8080
40 - ${CPS_CORE_MANAGEMENT_PORT:-8887}:8081
halil.cakald27dc542023-10-10 17:51:27 +010041 - ${CPS_CORE_DEBUG_PORT:-5005}:5005
JosephKeenand181b0e2021-10-01 10:40:47 +010042 environment:
tragaitdd6021e2021-10-19 16:46:21 +010043 CPS_USERNAME: ${CPS_CORE_USERNAME:-cpsuser}
44 CPS_PASSWORD: ${CPS_CORE_PASSWORD:-cpsr0cks!}
DylanB95EST4472bef2021-11-03 11:20:07 +000045 DB_HOST: ${DB_HOST:-dbpostgresql}
JosephKeenand181b0e2021-10-01 10:40:47 +010046 DB_USERNAME: ${DB_USERNAME:-cps}
47 DB_PASSWORD: ${DB_PASSWORD:-cps}
48 DMI_USERNAME: ${DMI_USERNAME:-cpsuser}
49 DMI_PASSWORD: ${DMI_PASSWORD:-cpsr0cks!}
halil.cakal1340c572023-04-12 15:19:45 +010050 KAFKA_BOOTSTRAP_SERVER: kafka:29092
JosephKeenan1c908482022-06-16 16:19:09 +010051 notification.enabled: 'true'
52 notification.async.executor.time-out-value-in-ms: 2000
JosephKeenanf31c7f82022-05-24 18:59:25 +010053 NOTIFICATION_DATASPACE_FILTER_PATTERNS: '.*'
mpriyank107dbd82022-09-19 15:56:39 +010054 NCMP_TIMERS_ADVISED-MODULES-SYNC_SLEEP-TIME-MS: ${ADVISED_MODULES_SYNC_SLEEP_TIME_MS:-30000}
55 NCMP_TIMERS_CM-HANDLE-DATA-SYNC_SLEEP-TIME-MS: ${CMHANDLE_DATA_SYNC_SLEEP_TIME_MS:-30000}
halil.cakald27dc542023-10-10 17:51:27 +010056 JAVA_TOOL_OPTIONS: -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:5005
JosephKeenand181b0e2021-10-01 10:40:47 +010057 restart: unless-stopped
58 depends_on:
JosephKeenanf31c7f82022-05-24 18:59:25 +010059 - dbpostgresql
60
61 ### if kafka is not required comment out zookeeper and kafka ###
62 zookeeper:
63 image: confluentinc/cp-zookeeper:6.2.1
64 container_name: zookeeper
65 ports:
66 - '2181:2181'
67 environment:
68 ZOOKEEPER_CLIENT_PORT: 2181
69
70 kafka:
71 image: confluentinc/cp-kafka:6.2.1
72 container_name: kafka
73 ports:
halil.cakal1340c572023-04-12 15:19:45 +010074 - '9092:9092'
JosephKeenanf31c7f82022-05-24 18:59:25 +010075 depends_on:
76 - zookeeper
77 environment:
78 KAFKA_BROKER_ID: 1
79 KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
JosephKeenanf31c7f82022-05-24 18:59:25 +010080 KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,CONNECTIONS_FROM_HOST:PLAINTEXT
halil.cakal1340c572023-04-12 15:19:45 +010081 KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka:29092,CONNECTIONS_FROM_HOST://localhost:9092
JosephKeenanf31c7f82022-05-24 18:59:25 +010082 KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
83
JosephKeenanf31c7f82022-05-24 18:59:25 +010084 ncmp-dmi-plugin:
85 container_name: ncmp-dmi-plugin
halil.cakal9f3ee9f2023-05-16 11:06:57 +010086 image: ${DOCKER_REPO:-nexus3.onap.org:10003}/onap/ncmp-dmi-plugin:${DMI_VERSION:-1.4.0-SNAPSHOT-latest}
JosephKeenanf31c7f82022-05-24 18:59:25 +010087 ports:
88 - ${DMI_PORT:-8783}:8080
89 - ${DMI_MANAGEMENT_PORT:-8787}:8081
90 environment:
91 CPS_USERNAME: ${CPS_CORE_USERNAME:-cpsuser}
92 CPS_PASSWORD: ${CPS_CORE_PASSWORD:-cpsr0cks!}
93 CPS_CORE_HOST: ${CPS_CORE_HOST:-cps-and-ncmp}
94 CPS_CORE_PORT: ${CPS_CORE_PORT:-8080}
95 CPS_CORE_USERNAME: ${CPS_CORE_USERNAME:-cpsuser}
96 CPS_CORE_PASSWORD: ${CPS_CORE_PASSWORD:-cpsr0cks!}
97 SDNC_HOST: ${SDNC_HOST:-sdnc}
98 SDNC_PORT: ${SDNC_PORT:-8181}
99 SDNC_USERNAME: ${SDNC_USERNAME:-admin}
100 SDNC_PASSWORD: ${SDNC_PASSWORD:-Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U}
101 DMI_SERVICE_URL: ${DMI_SERVICE_URL:-http://ncmp-dmi-plugin:8783}
halil.cakal1340c572023-04-12 15:19:45 +0100102 DMI_SERVICE_NAME: ${DMI_SERVICE_NAME:-dminame1}
JosephKeenanf31c7f82022-05-24 18:59:25 +0100103 DMI_USERNAME: ${DMI_USERNAME:-cpsuser}
104 DMI_PASSWORD: ${DMI_PASSWORD:-cpsr0cks!}
halil.cakal1340c572023-04-12 15:19:45 +0100105 KAFKA_BOOTSTRAP_SERVER: kafka:29092
JosephKeenanf31c7f82022-05-24 18:59:25 +0100106 notification.data-updated.enabled: 'true'
107 NOTIFICATION_DATASPACE_FILTER_PATTERNS: '.*'
108 restart: unless-stopped
ToineSiebelinkb2c8bc62023-02-07 10:30:03 +0000109 profiles:
110 - dmi-service
111
sourabh_sourabh7cda5e92023-07-05 00:56:05 +0100112 ncmp-dmi-plugin-demo-and-csit-stub:
113 container_name: ncmp-dmi-plugin-demo-and-csit-stub
114 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 +0000115 ports:
sourabh_sourabh7cda5e92023-07-05 00:56:05 +0100116 - ${DMI_DEMO_STUB_PORT:-8784}:8092
117 environment:
halil.cakal1340c572023-04-12 15:19:45 +0100118 KAFKA_BOOTSTRAP_SERVER: kafka:29092
sourabh_sourabh7cda5e92023-07-05 00:56:05 +0100119 NCMP_CONSUMER_GROUP_ID: ncmp-group
120 NCMP_ASYNC_M2M_TOPIC: ncmp-async-m2m
ToineSiebelinkb2c8bc62023-02-07 10:30:03 +0000121 restart: unless-stopped
122 profiles:
123 - dmi-stub
sourabh_sourabh7cda5e92023-07-05 00:56:05 +0100124 - dmi-service
emacleef6f16f52023-01-25 12:18:15 +0000125
ToineSiebelinkb2c8bc62023-02-07 10:30:03 +0000126 prometheus:
127 container_name: prometheus-container
128 image: prom/prometheus:latest
129 ports:
130 - 9090:9090
131 restart: always
132 volumes:
133 - ./prometheus.yml:/etc/prometheus/prometheus.yml
134 profiles:
135 - monitoring
136
137 grafana:
138 image: grafana/grafana-oss:latest
139 user: ""
140 container_name: grafana-container
141 depends_on:
142 prometheus:
143 condition: service_started
144 ports:
145 - 3000:3000
146 volumes:
147 - grafana:/var/lib/grafana
148 environment:
149 - GF_SECURITY_ADMIN_PASSWORD=admin
150 - GF_SERVER_DOMAIN:localhost
151 profiles:
152 - monitoring
153
154volumes:
155 grafana: