Claudio D. Gasparini | 4e07d48 | 2021-02-11 08:51:06 +0100 | [diff] [blame] | 1 | # ============LICENSE_START======================================================= |
| 2 | # Copyright (c) 2020 Pantheon.tech. |
| 3 | # Modifications Copyright (C) 2021 Bell Canada. |
lukegleeson | 15b93e7 | 2021-07-07 15:25:30 +0100 | [diff] [blame] | 4 | # Modifications Copyright (C) 2021 Nordix Foundation |
Claudio D. Gasparini | 4e07d48 | 2021-02-11 08:51:06 +0100 | [diff] [blame] | 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 | |
Claudio David Gasparini | 900ba02 | 2020-11-08 22:18:36 +0100 | [diff] [blame] | 19 | version: "3.7" |
| 20 | |
| 21 | services: |
JosephKeenan | d181b0e | 2021-10-01 10:40:47 +0100 | [diff] [blame] | 22 | ### Services cps-service, cps-ncmp, zookeeper and kafka are commented below, these |
| 23 | ### services can be un-commented and used on need to use basis. Only minimal |
| 24 | ### services will run (dbpostgresql, cps-and-ncmp and ncmp-dmi-plugin) by default. |
| 25 | |
Claudio D. Gasparini | 4e07d48 | 2021-02-11 08:51:06 +0100 | [diff] [blame] | 26 | #cps-standalone: |
| 27 | # container_name: cps-service |
Bruno Sakoto | 6658f50 | 2021-07-01 22:28:17 -0400 | [diff] [blame] | 28 | # image: ${DOCKER_REPO:-nexus3.onap.org:10003}/onap/cps-service:${VERSION:-latest} |
Claudio D. Gasparini | 4e07d48 | 2021-02-11 08:51:06 +0100 | [diff] [blame] | 29 | # ports: |
| 30 | # - "8881:8080" |
puthuparambil.aditya | b46d137 | 2021-07-09 12:51:10 +0100 | [diff] [blame] | 31 | # - "8887:8081" |
Claudio D. Gasparini | 4e07d48 | 2021-02-11 08:51:06 +0100 | [diff] [blame] | 32 | # environment: |
DylanB95EST | 9d9b12a | 2021-11-03 13:55:44 +0000 | [diff] [blame] | 33 | # CPS_USERNAME: ${CPS_CORE_USERNAME:-cpsuser} |
| 34 | # CPS_PASSWORD: ${CPS_CORE_PASSWORD:-cpsr0cks!} |
Renu Kumari | bd35b4d | 2021-05-17 07:16:48 -0400 | [diff] [blame] | 35 | # DB_HOST: dbpostgresql |
Bruno Sakoto | 6658f50 | 2021-07-01 22:28:17 -0400 | [diff] [blame] | 36 | # DB_USERNAME: ${DB_USERNAME:-cps} |
| 37 | # DB_PASSWORD: ${DB_PASSWORD:-cps} |
Renu Kumari | ff52b94 | 2021-05-27 23:16:32 -0400 | [diff] [blame] | 38 | # #KAFKA_BOOTSTRAP_SERVER: kafka:9092 |
| 39 | # #notification.data-updated.enabled: 'true' |
Renu Kumari | 86c74c7 | 2021-08-19 13:11:00 -0400 | [diff] [blame] | 40 | # #NOTIFICATION_DATASPACE_FILTER_PATTERNS: '.*' |
Claudio D. Gasparini | 4e07d48 | 2021-02-11 08:51:06 +0100 | [diff] [blame] | 41 | # restart: unless-stopped |
| 42 | # depends_on: |
| 43 | # - dbpostgresql |
Claudio David Gasparini | 900ba02 | 2020-11-08 22:18:36 +0100 | [diff] [blame] | 44 | |
tragait | 34a94b9 | 2021-03-30 12:02:27 +0100 | [diff] [blame] | 45 | #ncmp-standalone: |
| 46 | # container_name: cps-ncmp |
Bruno Sakoto | 6658f50 | 2021-07-01 22:28:17 -0400 | [diff] [blame] | 47 | # image: ${DOCKER_REPO:-nexus3.onap.org:10003}/onap/cps-ncmp:${VERSION:-latest} |
Claudio D. Gasparini | 4e07d48 | 2021-02-11 08:51:06 +0100 | [diff] [blame] | 48 | # ports: |
| 49 | # - "8882:8080" |
puthuparambil.aditya | b46d137 | 2021-07-09 12:51:10 +0100 | [diff] [blame] | 50 | # - "8887:8081" |
Claudio D. Gasparini | 4e07d48 | 2021-02-11 08:51:06 +0100 | [diff] [blame] | 51 | # environment: |
DylanB95EST | 9d9b12a | 2021-11-03 13:55:44 +0000 | [diff] [blame] | 52 | # CPS_USERNAME: ${CPS_CORE_USERNAME:-cpsuser} |
| 53 | # CPS_PASSWORD: ${CPS_CORE_PASSWORD:-cpsr0cks!} |
Renu Kumari | bd35b4d | 2021-05-17 07:16:48 -0400 | [diff] [blame] | 54 | # DB_HOST: dbpostgresql |
Bruno Sakoto | 6658f50 | 2021-07-01 22:28:17 -0400 | [diff] [blame] | 55 | # DB_USERNAME: ${DB_USERNAME:-cps} |
| 56 | # DB_PASSWORD: ${DB_PASSWORD:-cps} |
tragait | c328551 | 2021-08-16 15:12:36 +0100 | [diff] [blame] | 57 | # DMI_USERNAME: ${DMI_USERNAME:-cpsuser} |
| 58 | # DMI_PASSWORD: ${DMI_PASSWORD:-cpsr0cks!} |
Renu Kumari | ff52b94 | 2021-05-27 23:16:32 -0400 | [diff] [blame] | 59 | # #KAFKA_BOOTSTRAP_SERVER: kafka:9092 |
| 60 | # #notification.data-updated.enabled: 'true' |
Renu Kumari | 86c74c7 | 2021-08-19 13:11:00 -0400 | [diff] [blame] | 61 | # #NOTIFICATION_DATASPACE_FILTER_PATTERNS: '.*' |
Claudio D. Gasparini | 4e07d48 | 2021-02-11 08:51:06 +0100 | [diff] [blame] | 62 | # restart: unless-stopped |
| 63 | # depends_on: |
| 64 | # - dbpostgresql |
Claudio D. Gasparini | b1ccfce | 2021-02-04 09:33:28 +0100 | [diff] [blame] | 65 | |
JosephKeenan | d181b0e | 2021-10-01 10:40:47 +0100 | [diff] [blame] | 66 | # zookeeper: |
| 67 | # image: confluentinc/cp-zookeeper:6.1.1 |
| 68 | # environment: |
| 69 | # ZOOKEEPER_CLIENT_PORT: 2181 |
| 70 | # ZOOKEEPER_TICK_TIME: 2000 |
| 71 | # ports: |
| 72 | # - 22181:2181 |
| 73 | # |
| 74 | # kafka: |
| 75 | # image: confluentinc/cp-kafka:6.1.1 |
| 76 | # depends_on: |
| 77 | # - zookeeper |
| 78 | # ports: |
| 79 | # - 29092:29092 |
| 80 | # environment: |
| 81 | # KAFKA_BROKER_ID: 1 |
| 82 | # KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181 |
| 83 | # KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka:9092,PLAINTEXT_HOST://localhost:29092 |
| 84 | # KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT |
| 85 | # KAFKA_INTER_BROKER_LISTENER_NAME: PLAINTEXT |
| 86 | # KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1 |
Ruslan Kashapov | 1e5bd94 | 2021-01-22 12:53:01 +0200 | [diff] [blame] | 87 | |
Claudio David Gasparini | 900ba02 | 2020-11-08 22:18:36 +0100 | [diff] [blame] | 88 | dbpostgresql: |
| 89 | container_name: dbpostgresql |
Rishi.Chail | e1c35f0 | 2021-04-23 11:51:42 +0100 | [diff] [blame] | 90 | image: postgres:13.2-alpine |
Claudio David Gasparini | 900ba02 | 2020-11-08 22:18:36 +0100 | [diff] [blame] | 91 | ports: |
| 92 | - '5432:5432' |
| 93 | environment: |
Claudio David Gasparini | 5faa49c | 2020-11-12 08:28:07 +0100 | [diff] [blame] | 94 | POSTGRES_DB: cpsdb |
Bruno Sakoto | 6658f50 | 2021-07-01 22:28:17 -0400 | [diff] [blame] | 95 | POSTGRES_USER: ${DB_USERNAME:-cps} |
| 96 | POSTGRES_PASSWORD: ${DB_PASSWORD:-cps} |
Renu Kumari | ff52b94 | 2021-05-27 23:16:32 -0400 | [diff] [blame] | 97 | |
JosephKeenan | d181b0e | 2021-10-01 10:40:47 +0100 | [diff] [blame] | 98 | cps-and-ncmp: |
| 99 | container_name: cps-and-ncmp |
tragait | dd6021e | 2021-10-19 16:46:21 +0100 | [diff] [blame] | 100 | image: ${DOCKER_REPO:-nexus3.onap.org:10003}/onap/cps-and-ncmp:${CPS_VERSION:-latest} |
JosephKeenan | d181b0e | 2021-10-01 10:40:47 +0100 | [diff] [blame] | 101 | ports: |
tragait | dd6021e | 2021-10-19 16:46:21 +0100 | [diff] [blame] | 102 | - ${CPS_CORE_PORT:-8883}:8080 |
| 103 | - ${CPS_CORE_MANAGEMENT_PORT:-8887}:8081 |
JosephKeenan | d181b0e | 2021-10-01 10:40:47 +0100 | [diff] [blame] | 104 | environment: |
tragait | dd6021e | 2021-10-19 16:46:21 +0100 | [diff] [blame] | 105 | CPS_USERNAME: ${CPS_CORE_USERNAME:-cpsuser} |
| 106 | CPS_PASSWORD: ${CPS_CORE_PASSWORD:-cpsr0cks!} |
DylanB95EST | 4472bef | 2021-11-03 11:20:07 +0000 | [diff] [blame] | 107 | DB_HOST: ${DB_HOST:-dbpostgresql} |
JosephKeenan | d181b0e | 2021-10-01 10:40:47 +0100 | [diff] [blame] | 108 | DB_USERNAME: ${DB_USERNAME:-cps} |
| 109 | DB_PASSWORD: ${DB_PASSWORD:-cps} |
| 110 | DMI_USERNAME: ${DMI_USERNAME:-cpsuser} |
| 111 | DMI_PASSWORD: ${DMI_PASSWORD:-cpsr0cks!} |
| 112 | #KAFKA_BOOTSTRAP_SERVER: kafka:9092 |
| 113 | #notification.data-updated.enabled: 'true' |
| 114 | #NOTIFICATION_DATASPACE_FILTER_PATTERNS: '.*' |
| 115 | restart: unless-stopped |
| 116 | depends_on: |
tragait | dd6021e | 2021-10-19 16:46:21 +0100 | [diff] [blame] | 117 | - dbpostgresql |