blob: 0399c3aefb9aa91ed59541da9076de6f7538d3c5 [file] [log] [blame]
pramodad6382f2018-03-28 22:32:00 +00001# Copyright © 2017 Amdocs, Bell Canada
Durgpal7ad40692018-08-03 07:28:36 +00002# Modifications Copyright © 2018 AT&T
pramodad6382f2018-03-28 22:32:00 +00003#
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
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
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
16#################################################################
17# Global configuration defaults.
18#################################################################
19global:
20 nodePortPrefix: 302
pramodad6382f2018-03-28 22:32:00 +000021 readinessRepository: oomk8s
BorislavG3d6f9372018-04-15 11:55:39 +000022 readinessImage: readiness-check:2.0.0
pramodad6382f2018-03-28 22:32:00 +000023 loggingRepository: docker.elastic.co
24 loggingImage: beats/filebeat:5.5.0
pramodad6382f2018-03-28 22:32:00 +000025 persistence: {}
Mandeep Khindaca210a92018-05-14 20:55:52 +000026 ubuntuInitRepository: registry.hub.docker.com
su622be10aee32020-03-10 09:44:35 -040027 envsubstImage: dibi/envsubst
pramodad6382f2018-03-28 22:32:00 +000028
29#################################################################
30# Application configuration defaults.
31#################################################################
32# application image
sunil unnava4b2c4e02018-08-29 19:11:26 -040033repository: nexus3.onap.org:10001
su622be10aee32020-03-10 09:44:35 -040034image: onap/dmaap/kafka111:1.0.3
pramodad6382f2018-03-28 22:32:00 +000035pullPolicy: Always
Mandeep Khindaca210a92018-05-14 20:55:52 +000036ubuntuInitImage: oomk8s/ubuntu-init:2.0.0
sunil.unnava67970052019-04-10 13:09:52 -040037busyBoxImage: busybox:1.30
38busyBoxRepository: docker.io
39
pramodad6382f2018-03-28 22:32:00 +000040
41zookeeper:
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +000042 name: message-router-zookeeper
43 port: 2181
pramodad6382f2018-03-28 22:32:00 +000044
su622be10aee32020-03-10 09:44:35 -040045kafka:
46 heapOptions: -Xmx5G -Xms1G
47 jaasOptions: -Djava.security.auth.login.config=/etc/kafka/secrets/jaas/zk_client_jaas.conf
48 jaasOptionsAaf: -Djava.security.auth.login.config=/etc/kafka/secrets/jaas/kafka_server_jaas.conf
49 enableSupport: false
50 protocolMapAaf: INTERNAL_SASL_PLAINTEXT:SASL_PLAINTEXT,EXTERNAL_SASL_PLAINTEXT:SASL_PLAINTEXT
51 protocolMap: INTERNAL_PLAINTEXT:PLAINTEXT,EXTERNAL_PLAINTEXT:PLAINTEXT
52 listenersAaf: EXTERNAL_SASL_PLAINTEXT://0.0.0.0:9091,INTERNAL_SASL_PLAINTEXT://0.0.0.0:9092
53 listeners: EXTERNAL_PLAINTEXT://0.0.0.0:9091,INTERNAL_PLAINTEXT://0.0.0.0:9092
54 authorizer: org.onap.dmaap.kafkaAuthorize.KafkaCustomAuthorizer
55 saslInterBrokerProtocol: PLAIN
56 saslMech: PLAIN
57 interBrokerListernerAaf: INTERNAL_SASL_PLAINTEXT
58 interBrokerListerner: INTERNAL_PLAINTEXT
59
60
61configurationOverrides:
62 "offsets.topic.replication.factor": "3"
63 "log.dirs": "/var/lib/kafka/data"
64 "log.retention.hours": "168"
65 "num.partitions": "3"
66 "offsets.topic.replication.factor": "3"
67 "transaction.state.log.replication.factor": "1"
68 "transaction.state.log.min.isr": "1"
69 "num.recovery.threads.per.data.dir": "5"
70 "log.retention.hours": "168"
71 "zookeeper.connection.timeout.ms": "6000"
72 "default.replication.factor": "3"
73
74jmx:
75 port: 5555
76
77prometheus:
78 jmx:
79 enabled: false
80 image: solsson/kafka-prometheus-jmx-exporter@sha256
81 imageTag: 6f82e2b0464f50da8104acd7363fb9b995001ddff77d248379f8788e78946143
82 imageRepository: docker.io
83 port: 5556
84
85jaas:
86 config:
87 zkClient: kafka
88 zkClientPassword: kafka_secret
89 kafkaAdminUser: admin
90 kafkaAdminPassword: admin_secret
91 #kafkaAdminUserExternal: some secret
92 #zkClientPasswordExternal: some secret
93
94
95secrets:
96 - uid: zk-client
97 type: basicAuth
98 externalSecret: '{{ .Values.jaas.config.zkClientPasswordExternal}}'
99 login: '{{ .Values.jaas.config.zkClient }}'
100 password: '{{ .Values.jaas.config.zkClientPassword }}'
101 passwordPolicy: required
102 - uid: kafka-admin
103 type: basicAuth
104 externalSecret: '{{ .Values.jaas.config.kafkaAdminUserExternal}}'
105 login: '{{ .Values.jaas.config.kafkaAdminUser }}'
106 password: '{{ .Values.jaas.config.kafkaAdminPassword }}'
107 passwordPolicy: required
108
pramodad6382f2018-03-28 22:32:00 +0000109# flag to enable debugging - application support required
110debugEnabled: false
111
pramodad6382f2018-03-28 22:32:00 +0000112# default number of instances
sunil unnavab96a3912018-12-06 09:50:39 -0500113replicaCount: 3
114
sunil.unnava02f077e2019-03-28 20:50:29 -0400115
116# To access Kafka outside cluster, this value must be set to hard and the number of nodes in K8S cluster must be equal or greater then replica count
117podAntiAffinityType: soft
118
sunil unnavab96a3912018-12-06 09:50:39 -0500119# defult partitions
120defaultpartitions: 3
121
pramodad6382f2018-03-28 22:32:00 +0000122nodeSelector: {}
123
Matthieu Cauffiezc3d5a562019-03-12 11:07:01 -0400124nodeAffinity: {}
125
pramodad6382f2018-03-28 22:32:00 +0000126affinity: {}
127
Matthieu Cauffiez767fd662019-03-12 13:47:52 -0400128tolerations: {}
129
sunil.unnava02f077e2019-03-28 20:50:29 -0400130
131
pramodad6382f2018-03-28 22:32:00 +0000132# probe configuration parameters
133liveness:
su622be10aee32020-03-10 09:44:35 -0400134 initialDelaySeconds: 70
135 periodSeconds: 20
136 timeoutSeconds: 10
pramodad6382f2018-03-28 22:32:00 +0000137 # necessary to disable liveness probe when setting breakpoints
138 # in debugger so K8s doesn't restart unresponsive container
139 enabled: true
140
141readiness:
su622be10aee32020-03-10 09:44:35 -0400142 initialDelaySeconds: 90
143 periodSeconds: 20
144 timeoutSeconds: 100
pramodad6382f2018-03-28 22:32:00 +0000145
146## Persist data to a persitent volume
147persistence:
148 enabled: true
149
150 ## A manually managed Persistent Volume and Claim
151 ## Requires persistence.enabled: true
152 ## If defined, PVC must be created manually before volume will be bound
153 # existingClaim:
154 volumeReclaimPolicy: Retain
155
156 ## database data Persistent Volume Storage Class
157 ## If defined, storageClassName: <storageClass>
158 ## If set to "-", storageClassName: "", which disables dynamic provisioning
159 ## If undefined (the default) or set to null, no storageClassName spec is
160 ## set, choosing the default provisioner. (gp2 on AWS, standard on
161 ## GKE, AWS & OpenStack)
162 ##
163 # storageClass: "-"
Sylvain Desbureaux18fe1fe2019-08-29 17:30:02 +0200164 accessMode: ReadWriteOnce
pramodad6382f2018-03-28 22:32:00 +0000165 size: 2Gi
166 mountPath: /dockerdata-nfs
167 mountSubPath: message-router/data-kafka
168
169service:
sunil.unnava02f077e2019-03-28 20:50:29 -0400170 type: NodePort
Dominic Lunanuova1ba2b252018-04-30 19:01:31 +0000171 name: message-router-kafka
172 portName: message-router-kafka
pramodad6382f2018-03-28 22:32:00 +0000173 internalPort: 9092
su622be10aee32020-03-10 09:44:35 -0400174 internalSSLPort: 9093
175 externalPort: 9091
sunil.unnava02f077e2019-03-28 20:50:29 -0400176 baseNodePort: 30490
177
Sylvain Desbureaux18fe1fe2019-08-29 17:30:02 +0200178
pramodad6382f2018-03-28 22:32:00 +0000179
180ingress:
181 enabled: false
182
Prateekinlinux9f5dc042018-09-20 14:08:54 +0000183# Resource Limit flavor -By Default using small
184flavor: small
185# Segregation for Different environment (Small and Large)
186resources:
187 small:
188 limits:
189 cpu: 2000m
190 memory: 4Gi
191 requests:
192 cpu: 500m
193 memory: 1Gi
194 large:
195 limits:
196 cpu: 4000m
197 memory: 8Gi
198 requests:
199 cpu: 1000m
200 memory: 2Gi
201 unlimited: {}