1 # ============LICENSE_START===============================================
2 # Copyright (C) 2020 Nordix Foundation. All rights reserved.
3 # ========================================================================
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
8 # http://www.apache.org/licenses/LICENSE-2.0
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15 # ============LICENSE_END=================================================
22 name: ${DOCKER_SIM_NWNAME}
26 image: $ONAP_ZOOKEEPER_IMAGE
27 container_name: $MR_ZOOKEEPER_APP_NAME
29 - "$MR_ZOOKEEPER_PORT:$MR_ZOOKEEPER_PORT"
32 ZOOKEEPER_TICK_TIME: 2000
33 ZOOKEEPER_SYNC_LIMIT: 5
34 ZOOKEEPER_INIT_LIMIT: 10
35 ZOOKEEPER_MAX_CLIENT_CNXNS: 200
36 ZOOKEEPER_AUTOPURGE_SNAP_RETAIN_COUNT: 3
37 ZOOKEEPER_AUTOPURGE_PURGE_INTERVAL: 24
38 ZOOKEEPER_CLIENT_PORT: $MR_ZOOKEEPER_PORT
39 KAFKA_OPTS: -Djava.security.auth.login.config=/etc/zookeeper/secrets/jaas/zk_server_jaas.conf -Dzookeeper.kerberos.removeHostFromPrincipal=true -Dzookeeper.kerberos.removeRealmFromPrincipal=true -Dzookeeper.authProvider.1=org.apache.zookeeper.server.auth.SASLAuthenticationProvider -Dzookeeper.requireClientAuthScheme=sasl -Dzookeeper.4lw.commands.whitelist=*
40 ZOOKEEPER_SERVER_ID: 1
42 - .${MR_DMAAP_HOST_MNT_DIR}/zk/zk_server_jaas.conf:/etc/zookeeper/secrets/jaas/zk_server_jaas.conf
46 - "nrttest_app=DMAAPMR"
47 - "nrttest_dp=ZooKeeper"
50 image: $ONAP_KAFKA_IMAGE
51 container_name: $MR_KAFKA_APP_NAME
53 - "$MR_KAFKA_PORT:$MR_KAFKA_PORT"
56 KAFKA_ZOOKEEPER_CONNECT: $MR_ZOOKEEPER_APP_NAME:$MR_ZOOKEEPER_PORT
57 KAFKA_ZOOKEEPER_CONNECTION_TIMEOUT_MS: 40000
58 KAFKA_ZOOKEEPER_SESSION_TIMEOUT_MS: 40000
59 KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: INTERNAL_PLAINTEXT:PLAINTEXT,EXTERNAL_PLAINTEXT:PLAINTEXT
60 KAFKA_ADVERTISED_LISTENERS: INTERNAL_PLAINTEXT://$MR_KAFKA_SERVICE_PATH
61 KAFKA_LISTENERS: INTERNAL_PLAINTEXT://0.0.0.0:$MR_KAFKA_PORT
62 KAFKA_INTER_BROKER_LISTENER_NAME: INTERNAL_PLAINTEXT
63 KAFKA_CONFLUENT_SUPPORT_METRICS_ENABLE: 'false'
64 KAFKA_OPTS: -Djava.security.auth.login.config=/etc/kafka/secrets/jaas/zk_client_jaas.conf
65 KAFKA_ZOOKEEPER_SET_ACL: 'true'
66 KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
67 # Reduced the number of partitions only to avoid the timeout error for the first subscribe call in slow environment
68 KAFKA_OFFSETS_TOPIC_NUM_PARTITIONS: 1
70 - .${MR_DMAAP_HOST_MNT_DIR}/kafka/zk_client_jaas.conf:/etc/kafka/secrets/jaas/zk_client_jaas.conf
76 - "nrttest_app=DMAAPMR"
80 image: $ONAP_DMAAPMR_IMAGE
81 container_name: $MR_DMAAP_APP_NAME
83 - ${MR_DMAAP_LOCALHOST_PORT}:${MR_INTERNAL_PORT}
84 - ${MR_DMAAP_LOCALHOST_SECURE_PORT}:${MR_INTERNAL_SECURE_PORT}
88 - .${MR_DMAAP_HOST_MNT_DIR}/mr/MsgRtrApi.properties:/appl/dmaapMR1/bundleconfig/etc/appprops/MsgRtrApi.properties
89 - .${MR_DMAAP_HOST_MNT_DIR}/mr/logback.xml:/appl/dmaapMR1/bundleconfig/etc/logback.xml
90 - .${MR_DMAAP_HOST_MNT_DIR}/mr/cadi.properties:/appl/dmaapMR1/etc/cadi.properties
97 - "nrttest_app=DMAAPMR"
98 - "nrttest_dp=DMAAP Message Router"