blob: 63aeca235e149095a2b118b6b92828dffd01a7d2 [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.
JosephKeenanf31c7f82022-05-24 18:59:25 +01004# Modifications Copyright (C) 2021-2022 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
JosephKeenan483100b2022-07-07 09:24:43 +010019version: '3.8'
Claudio David Gasparini900ba022020-11-08 22:18:36 +010020
21services:
JosephKeenand181b0e2021-10-01 10:40:47 +010022
JosephKeenan1c908482022-06-16 16:19:09 +010023 ### docker-compose up -d -> run ALL services ###
24 ### to disable notifications make notification.enabled to false & comment out kafka/zookeeper services ###
Ruslan Kashapov1e5bd942021-01-22 12:53:01 +020025
Claudio David Gasparini900ba022020-11-08 22:18:36 +010026 dbpostgresql:
27 container_name: dbpostgresql
Rishi.Chaile1c35f02021-04-23 11:51:42 +010028 image: postgres:13.2-alpine
Claudio David Gasparini900ba022020-11-08 22:18:36 +010029 ports:
puthuparambil.aditya73d58862022-01-28 13:22:33 +000030 - ${DB_PORT:-5432}:5432
Claudio David Gasparini900ba022020-11-08 22:18:36 +010031 environment:
Claudio David Gasparini5faa49c2020-11-12 08:28:07 +010032 POSTGRES_DB: cpsdb
Bruno Sakoto6658f502021-07-01 22:28:17 -040033 POSTGRES_USER: ${DB_USERNAME:-cps}
34 POSTGRES_PASSWORD: ${DB_PASSWORD:-cps}
Renu Kumariff52b942021-05-27 23:16:32 -040035
JosephKeenand181b0e2021-10-01 10:40:47 +010036 cps-and-ncmp:
37 container_name: cps-and-ncmp
tragaitdd6021e2021-10-19 16:46:21 +010038 image: ${DOCKER_REPO:-nexus3.onap.org:10003}/onap/cps-and-ncmp:${CPS_VERSION:-latest}
JosephKeenand181b0e2021-10-01 10:40:47 +010039 ports:
tragaitdd6021e2021-10-19 16:46:21 +010040 - ${CPS_CORE_PORT:-8883}:8080
41 - ${CPS_CORE_MANAGEMENT_PORT:-8887}:8081
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!}
JosephKeenanf31c7f82022-05-24 18:59:25 +010050 KAFKA_BOOTSTRAP_SERVER: kafka:9092
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: '.*'
sourabh_sourabh738a42d2022-06-09 11:34:31 +010054 TIMERS_ADVISED-MODULES-SYNC_SLEEP-TIME-MS: 2000
JosephKeenand181b0e2021-10-01 10:40:47 +010055 restart: unless-stopped
56 depends_on:
JosephKeenanf31c7f82022-05-24 18:59:25 +010057 - 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 ### Comment out this section if dmi plugin is not required ###
83 ncmp-dmi-plugin:
84 container_name: ncmp-dmi-plugin
85 image: ${DOCKER_REPO:-nexus3.onap.org:10003}/onap/ncmp-dmi-plugin:${DMI_VERSION:-1.2.0-SNAPSHOT-latest}
86 ports:
87 - ${DMI_PORT:-8783}:8080
88 - ${DMI_MANAGEMENT_PORT:-8787}:8081
89 environment:
90 CPS_USERNAME: ${CPS_CORE_USERNAME:-cpsuser}
91 CPS_PASSWORD: ${CPS_CORE_PASSWORD:-cpsr0cks!}
92 CPS_CORE_HOST: ${CPS_CORE_HOST:-cps-and-ncmp}
93 CPS_CORE_PORT: ${CPS_CORE_PORT:-8080}
94 CPS_CORE_USERNAME: ${CPS_CORE_USERNAME:-cpsuser}
95 CPS_CORE_PASSWORD: ${CPS_CORE_PASSWORD:-cpsr0cks!}
96 SDNC_HOST: ${SDNC_HOST:-sdnc}
97 SDNC_PORT: ${SDNC_PORT:-8181}
98 SDNC_USERNAME: ${SDNC_USERNAME:-admin}
99 SDNC_PASSWORD: ${SDNC_PASSWORD:-Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U}
100 DMI_SERVICE_URL: ${DMI_SERVICE_URL:-http://ncmp-dmi-plugin:8783}
101 DMI_USERNAME: ${DMI_USERNAME:-cpsuser}
102 DMI_PASSWORD: ${DMI_PASSWORD:-cpsr0cks!}
103 KAFKA_BOOTSTRAP_SERVER: kafka:9092
104 notification.data-updated.enabled: 'true'
105 NOTIFICATION_DATASPACE_FILTER_PATTERNS: '.*'
106 restart: unless-stopped