Merge "Create shared postman collections"
[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-2024 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     deploy:
35       resources:
36         reservations:
37           cpus: '1'
38           memory: 1G
39         limits:
40           cpus: '6'
41           memory: 3G
42
43   cps-and-ncmp:
44     container_name: cps-and-ncmp
45     image: ${DOCKER_REPO:-nexus3.onap.org:10003}/onap/cps-and-ncmp:${CPS_VERSION:-latest}
46     ports:
47       - ${CPS_CORE_PORT:-8883}:8080
48       - ${CPS_CORE_DEBUG_PORT:-5005}:5005
49     environment:
50       CPS_USERNAME: ${CPS_CORE_USERNAME:-cpsuser}
51       CPS_PASSWORD: ${CPS_CORE_PASSWORD:-cpsr0cks!}
52       DB_HOST: ${DB_HOST:-dbpostgresql}
53       DB_USERNAME: ${DB_USERNAME:-cps}
54       DB_PASSWORD: ${DB_PASSWORD:-cps}
55       DMI_USERNAME: ${DMI_USERNAME:-cpsuser}
56       DMI_PASSWORD: ${DMI_PASSWORD:-cpsr0cks!}
57       KAFKA_BOOTSTRAP_SERVER: kafka:29092
58       notification.enabled: 'true'
59       JAVA_TOOL_OPTIONS: -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:5005
60     restart: unless-stopped
61     depends_on:
62       - dbpostgresql
63     deploy:
64       resources:
65         reservations:
66           cpus: '2'
67           memory: 2G
68         limits:
69           cpus: '3'
70           memory: 3G
71
72   ### if kafka is not required comment out zookeeper and kafka ###
73   zookeeper:
74     image: confluentinc/cp-zookeeper:6.2.1
75     container_name: zookeeper
76     ports:
77       - '2181:2181'
78     environment:
79       ZOOKEEPER_CLIENT_PORT: 2181
80
81   kafka:
82     image: confluentinc/cp-kafka:6.2.1
83     container_name: kafka
84     ports:
85       - '9092:9092'
86     depends_on:
87       - zookeeper
88     environment:
89       KAFKA_BROKER_ID: 1
90       KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
91       KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,CONNECTIONS_FROM_HOST:PLAINTEXT
92       KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka:29092,CONNECTIONS_FROM_HOST://localhost:9092
93       KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
94
95   ncmp-dmi-plugin:
96     container_name: ncmp-dmi-plugin
97     image: ${DOCKER_REPO:-nexus3.onap.org:10003}/onap/ncmp-dmi-plugin:${DMI_VERSION:-1.5.0-SNAPSHOT-latest}
98     ports:
99       - ${DMI_PORT:-8783}:8080
100     environment:
101       CPS_USERNAME: ${CPS_CORE_USERNAME:-cpsuser}
102       CPS_PASSWORD: ${CPS_CORE_PASSWORD:-cpsr0cks!}
103       CPS_CORE_HOST: ${CPS_CORE_HOST:-cps-and-ncmp}
104       CPS_CORE_PORT: ${CPS_CORE_PORT:-8080}
105       CPS_CORE_USERNAME: ${CPS_CORE_USERNAME:-cpsuser}
106       CPS_CORE_PASSWORD: ${CPS_CORE_PASSWORD:-cpsr0cks!}
107       SDNC_HOST: ${SDNC_HOST:-sdnc}
108       SDNC_PORT: ${SDNC_PORT:-8181}
109       SDNC_USERNAME: ${SDNC_USERNAME:-admin}
110       SDNC_PASSWORD: ${SDNC_PASSWORD:-Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U}
111       DMI_SERVICE_URL: ${DMI_SERVICE_URL:-http://ncmp-dmi-plugin:8783}
112       DMI_SERVICE_NAME: ${DMI_SERVICE_NAME:-dminame1}
113       DMI_USERNAME: ${DMI_USERNAME:-cpsuser}
114       DMI_PASSWORD: ${DMI_PASSWORD:-cpsr0cks!}
115       KAFKA_BOOTSTRAP_SERVER: kafka:29092
116     restart: unless-stopped
117     profiles:
118       - dmi-service
119
120   ncmp-dmi-plugin-demo-and-csit-stub:
121     container_name: ncmp-dmi-plugin-demo-and-csit-stub
122     image: ${DOCKER_REPO:-nexus3.onap.org:10003}/onap/dmi-plugin-demo-and-csit-stub:${DMI_DEMO_STUB_VERSION:-latest}
123     ports:
124       - ${DMI_DEMO_STUB_PORT:-8784}:8092
125     environment:
126       KAFKA_BOOTSTRAP_SERVER: kafka:29092
127       NCMP_CONSUMER_GROUP_ID: ncmp-group
128       NCMP_ASYNC_M2M_TOPIC: ncmp-async-m2m
129       MODULE_REFERENCES_DELAY_MS: 100
130       MODULE_RESOURCES_DELAY_MS: 1000
131       DATA_FOR_CM_HANDLE_DELAY_MS: 2500
132     restart: unless-stopped
133     profiles:
134       - dmi-stub
135       - dmi-service
136
137   prometheus:
138     container_name: prometheus-container
139     image: prom/prometheus:latest
140     ports:
141       - 9090:9090
142     restart: always
143     volumes:
144       - ./prometheus.yml:/etc/prometheus/prometheus.yml
145     profiles:
146       - monitoring
147
148   grafana:
149     image: grafana/grafana-oss:latest
150     user: ""
151     container_name: grafana-container
152     depends_on:
153       prometheus:
154         condition: service_started
155     ports:
156       - 3000:3000
157     volumes:
158       - grafana:/var/lib/grafana
159     environment:
160       - GF_SECURITY_ADMIN_PASSWORD=admin
161       - GF_SERVER_DOMAIN:localhost
162     profiles:
163       - monitoring
164
165 volumes:
166   grafana: