Introduced a dmi rest demo csit stub
[cps.git] / docker-compose / docker-compose.yml
1 # ============LICENSE_START=======================================================
2 # Copyright (c) 2020 Pantheon.tech.
3 # Modifications Copyright (C) 2021 Bell Canada.
4 # Modifications Copyright (C) 2022-2023 Nordix Foundation.
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
19 services:
20
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)
23   ### to disable notifications make notification.enabled to false & comment out kafka/zookeeper services ###
24
25   dbpostgresql:
26     container_name: dbpostgresql
27     image: postgres:14.1-alpine
28     ports:
29       - ${DB_PORT:-5432}:5432
30     environment:
31       POSTGRES_DB: cpsdb
32       POSTGRES_USER: ${DB_USERNAME:-cps}
33       POSTGRES_PASSWORD: ${DB_PASSWORD:-cps}
34
35   cps-and-ncmp:
36     container_name: cps-and-ncmp
37     image: ${DOCKER_REPO:-nexus3.onap.org:10003}/onap/cps-and-ncmp:${CPS_VERSION:-latest}
38     ports:
39       - ${CPS_CORE_PORT:-8883}:8080
40       - ${CPS_CORE_MANAGEMENT_PORT:-8887}:8081
41     environment:
42       CPS_USERNAME: ${CPS_CORE_USERNAME:-cpsuser}
43       CPS_PASSWORD: ${CPS_CORE_PASSWORD:-cpsr0cks!}
44       DB_HOST: ${DB_HOST:-dbpostgresql}
45       DB_USERNAME: ${DB_USERNAME:-cps}
46       DB_PASSWORD: ${DB_PASSWORD:-cps}
47       DMI_USERNAME: ${DMI_USERNAME:-cpsuser}
48       DMI_PASSWORD: ${DMI_PASSWORD:-cpsr0cks!}
49       KAFKA_BOOTSTRAP_SERVER: kafka:9092
50       notification.enabled: 'true'
51       notification.async.executor.time-out-value-in-ms: 2000
52       NOTIFICATION_DATASPACE_FILTER_PATTERNS: '.*'
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}
55     restart: unless-stopped
56     depends_on:
57       - dbpostgresql
58
59   ### if kafka is not required comment out zookeeper and kafka ###
60   zookeeper:
61     image: confluentinc/cp-zookeeper:6.2.1
62     container_name: zookeeper
63     ports:
64       - '2181:2181'
65     environment:
66       ZOOKEEPER_CLIENT_PORT: 2181
67
68   kafka:
69     image: confluentinc/cp-kafka:6.2.1
70     container_name: kafka
71     ports:
72       - "19092:19092"
73     depends_on:
74       - zookeeper
75     environment:
76       KAFKA_BROKER_ID: 1
77       KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
78       KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka:9092,CONNECTIONS_FROM_HOST://localhost:19092
79       KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,CONNECTIONS_FROM_HOST:PLAINTEXT
80       KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
81
82   ncmp-dmi-plugin:
83     container_name: ncmp-dmi-plugin
84     image: ${DOCKER_REPO:-nexus3.onap.org:10003}/onap/ncmp-dmi-plugin:${DMI_VERSION:-1.4.0-SNAPSHOT-latest}
85     ports:
86       - ${DMI_PORT:-8783}:8080
87       - ${DMI_MANAGEMENT_PORT:-8787}:8081
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}
100       DMI_USERNAME: ${DMI_USERNAME:-cpsuser}
101       DMI_PASSWORD: ${DMI_PASSWORD:-cpsr0cks!}
102       KAFKA_BOOTSTRAP_SERVER: kafka:9092
103       notification.data-updated.enabled: 'true'
104       NOTIFICATION_DATASPACE_FILTER_PATTERNS: '.*'
105     restart: unless-stopped
106     profiles:
107       - dmi-service
108
109   ncmp-dmi-plugin-demo-and-csit-stub:
110     container_name: ncmp-dmi-plugin-demo-and-csit-stub
111     image: ${DOCKER_REPO:-nexus3.onap.org:10003}/onap/dmi-plugin-demo-and-csit-stub:${DMI_DEMO_STUB_VERSION:-latest}
112     ports:
113       - ${DMI_DEMO_STUB_PORT:-8784}:8092
114     environment:
115       KAFKA_BOOTSTRAP_SERVER: kafka:9092
116       NCMP_CONSUMER_GROUP_ID: ncmp-group
117       NCMP_ASYNC_M2M_TOPIC: ncmp-async-m2m
118     restart: unless-stopped
119     profiles:
120       - dmi-stub
121       - dmi-service
122
123   prometheus:
124     container_name: prometheus-container
125     image: prom/prometheus:latest
126     ports:
127       - 9090:9090
128     restart: always
129     volumes:
130       - ./prometheus.yml:/etc/prometheus/prometheus.yml
131     profiles:
132       - monitoring
133
134   grafana:
135     image: grafana/grafana-oss:latest
136     user: ""
137     container_name: grafana-container
138     depends_on:
139       prometheus:
140         condition: service_started
141     ports:
142       - 3000:3000
143     volumes:
144       - grafana:/var/lib/grafana
145     environment:
146       - GF_SECURITY_ADMIN_PASSWORD=admin
147       - GF_SERVER_DOMAIN:localhost
148     profiles:
149       - monitoring
150
151 volumes:
152   grafana: