[STRIMZI] Correction for external Access via Ingress
[oom.git] / kubernetes / strimzi / values.yaml
1 # Copyright © 2022 Nordix Foundation
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #       http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 #################################################################
16 # Global configuration defaults.
17 #################################################################
18 global:
19   nodePortPrefixExt: 304
20   persistence:
21     mountPath: /dockerdata-nfs
22   ingress:
23     virtualhost:
24       baseurl: &baseurl "simpledemo.onap.org"
25       preaddr: &preaddr ""
26       postaddr: &postaddr ""
27
28 #################################################################
29 # Application configuration defaults.
30 #################################################################
31 replicaCount: 3
32 config:
33   kafkaVersion: 3.2.3
34   authType: simple
35   saslMechanism: &saslMech scram-sha-512
36   kafkaInternalPort: &plainPort 9092
37   strimziKafkaAdminUser: &adminUser strimzi-kafka-admin
38   advertisedHost: kafka-api.simpledemo.onap.org
39   advertizedPortBroker0: &advertizedPortBroker0 9000
40   advertizedPortBroker1: &advertizedPortBroker1 9001
41   advertizedPortBroker2: &advertizedPortBroker2 9002
42
43 persistence:
44   enabled: &pvenabled true
45   mountPath: /dockerdata-nfs
46   kafka:
47     enabled: *pvenabled
48     # default values of 2Gi for dev env.
49     # Production values should be dimensioned according to requirements. ie >= 10Gi
50     size: 2Gi
51     volumeReclaimPolicy: Retain
52     accessMode: ReadWriteOnce
53     mountPath: /dockerdata-nfs
54     mountSubPath: strimzi-kafka/kafka
55   zookeeper:
56     enabled: *pvenabled
57     size: 1Gi
58     volumeReclaimPolicy: Retain
59     accessMode: ReadWriteOnce
60     mountPath: /dockerdata-nfs
61     mountSubPath: strimzi-kafka/zk
62
63 #Pods Service Account
64 serviceAccount:
65   nameOverride: strimzi-kafka
66   roles:
67     - read
68
69 ingress:
70   enabled: false
71   service:
72   - baseaddr: "kafka-bootstrap-api"
73     name: "onap-strimzi-kafka-external-bootstrap"
74     port: 9094
75     protocol: tcp
76     exposedPort: 9010
77     exposedProtocol: TLS
78   - baseaddr: "kafka-api"
79     tcpRoutes:
80     - name: "onap-strimzi-kafka-0"
81       port: 9094
82       exposedPort: *advertizedPortBroker0
83       exposedProtocol: TLS
84     - name: "onap-strimzi-kafka-1"
85       port: 9094
86       exposedPort: *advertizedPortBroker1
87       exposedProtocol: TLS
88     - name: "onap-strimzi-kafka-2"
89       port: 9094
90       exposedPort: *advertizedPortBroker2
91       exposedProtocol: TLS
92
93 ######################
94 #  Component overrides
95 ######################
96 strimzi-kafka-bridge:
97   enabled: true
98   config:
99     saslMechanism: *saslMech
100     kafkaInternalPort: *plainPort
101     strimziKafkaAdminUser: *adminUser