-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathdev-values-tls-all-components-and-kafka-and-oauth2.yaml
335 lines (320 loc) · 9.98 KB
/
dev-values-tls-all-components-and-kafka-and-oauth2.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
#
# Copyright 2022 DataStax, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
#
image:
brokerSts:
# If not using tiered storage, you can use the smaller pulsar image for the broker
repository: datastax/lunastreaming-all
pullPolicy: IfNotPresent
tag: 2.10_3.2
function:
repository: datastax/lunastreaming-all
pullPolicy: IfNotPresent
tag: 2.10_3.2
zookeeper:
repository: datastax/lunastreaming
pullPolicy: IfNotPresent
tag: 2.10_3.2
bookkeeper:
repository: datastax/lunastreaming
pullPolicy: IfNotPresent
tag: 2.10_3.2
proxy:
repository: datastax/lunastreaming-all
pullPolicy: IfNotPresent
tag: 2.10_3.2
bastion:
repository: datastax/lunastreaming
pullPolicy: IfNotPresent
tag: 2.10_3.2
pulsarBeam:
repository: kesque/pulsar-beam
pullPolicy: IfNotPresent
tag: 1.0.0
burnell:
repository: datastax/burnell
pullPolicy: Always
tag: 1.0.3
burnellLogCollector:
repository: datastax/burnell
pullPolicy: IfNotPresent
tag: logcollector_latest
pulsarSQL:
repository: datastax/lunastreaming-all
tag: 2.10_3.2
pullPolicy: IfNotPresent
tardigrade:
repository: storjlabs/gateway
pullPolicy: IfNotPresent
tag: 981f92a-v1.20.0-go1.17.5
enableAntiAffinity: false
enableTls: true
tls:
# Enable TLS between ZooKeeper nodes (quorum TLS), between BookKeeper and ZooKeeper, and between
# broker and ZooKeeper.
# Note: The configured certificate must allow for both server and client use since it is used
# for mTLS. This should be in certificate:
#
# X509v3 Extended Key Usage:
# TLS Web Server Authentication, TLS Web Client Authentication
# If using cert-manager, make sure your certificate includes:
#
zookeeper:
enabled: true
createCertificates: true
enableHostnameVerification: true
tlsSecretName: "pulsar-zookeeper-tls"
configureKeystoreWithPasswordFile: true
certSpec:
privateKey:
algorithm: "ECDSA"
size: 256
bookkeeper:
enabled: true
createCertificates: true
tlsSecretName: "pulsar-bookkeeper-tls"
certSpec:
privateKey:
algorithm: "ECDSA"
size: 256
function:
enableTlsWithBroker: true
createCertificates: true
tlsSecretName: "pulsar-function-tls"
enableHostnameVerification: true
certSpec:
privateKey:
algorithm: "ECDSA"
size: 256
websocket:
enableTlsWithBroker: true
enableHostnameVerification: true
certSpec:
privateKey:
algorithm: "ECDSA"
size: 256
proxy:
enableTlsWithBroker: true
enableHostnameVerification: true
createCertificates: true
tlsSecretName: "pulsar-proxy-tls"
certSpec:
privateKey:
algorithm: "ECDSA"
size: 256
broker:
createCertificates: true
tlsSecretName: "pulsar-broker-tls"
certSpec:
privateKey:
algorithm: "ECDSA"
size: 256
# Certificate used for TLS authentication with bookkeeper and zookeeper
autoRecovery:
enableHostnameVerification: true
createCertificates: true
tlsSecretName: "pulsar-autorecovery-tls"
certSpec:
privateKey:
algorithm: "ECDSA"
size: 256
pulsarAdminConsole:
enableTlsWithBroker: true
createCertificates: true
tlsSecretName: "pulsar-adminconsole-tls"
certSpec:
privateKey:
algorithm: "ECDSA"
size: 256
ssCaCert:
tlsSecretName: "pulsar-ss-ca"
certSpec:
privateKey:
algorithm: "ECDSA"
size: 256
# The current function worker code only uses TLS connections to brokers when authentication is enabled, so enable it here.
enableTokenAuth: true
restartOnConfigMapChange:
enabled: true
extra:
broker: false
brokerSts: true
proxy: true
function: true
burnellLogCollector: false
# Note that these deployments currently use the plaintext broker ports
burnell: true
pulsarHeartbeat: true
pulsarAdminConsole: true
cert-manager:
enabled: true
createCertificates:
selfSignedPerComponent:
enabled: true
openid:
enabled: true
# From token generated in Okta UI or other method:
allowedIssuerUrls: https://dev-42506116.okta.com/oauth2/aus7ypk6sjvgF4l615d7
allowedAudience: api://pulsarClient
withS4k: true
zookeeper:
replicaCount: 1
resources:
requests:
memory: 300Mi
cpu: 0.2
configData:
PULSAR_MEM: "-Xms300m -Xmx300m -Djute.maxbuffer=10485760 -XX:+ExitOnOutOfMemoryError"
bookkeeper:
replicaCount: 1
resources:
requests:
memory: 356Mi
cpu: 0.1
configData:
BOOKIE_MEM: "-Xms156m -Xmx156m -XX:MaxDirectMemorySize=200m -XX:+ExitOnOutOfMemoryError"
brokerSts:
component: broker
replicaCount: 1
service:
headless: true
ledger:
defaultEnsembleSize: 1
defaultAckQuorum: 1
defaultWriteQuorum: 1
resources:
requests:
memory: 300Mi
cpu: 0.3
authenticationProviders: "com.datastax.oss.pulsar.auth.AuthenticationProviderOpenID,org.apache.pulsar.broker.authentication.AuthenticationProviderToken"
configData:
PULSAR_MEM: "-Xms200m -Xmx200m -XX:MaxDirectMemorySize=100m -XX:+ExitOnOutOfMemoryError"
PULSAR_EXTRA_OPTS: "-Dpulsar.log.root.level=info"
PULSAR_PREFIX_brokerEntryMetadataInterceptors: "org.apache.pulsar.common.intercept.AppendIndexMetadataInterceptor,org.apache.pulsar.common.intercept.AppendBrokerTimestampMetadataInterceptor"
PULSAR_PREFIX_kafkaTransactionCoordinatorEnabled: "true"
PULSAR_PREFIX_messagingProtocols: "kafka"
PULSAR_PREFIX_brokerDeleteInactiveTopicsEnabled: "false"
PULSAR_PREFIX_kopSchemaRegistryEnable: "true"
PULSAR_PREFIX_allowAutoTopicCreationType: "partitioned"
PULSAR_PREFIX_protocolHandlerDirectory: "./protocols"
PULSAR_PREFIX_kopTlsEnabledWithBroker: "true"
PULSAR_PREFIX_kafkaListeners: "SASL_PLAINTEXT://0.0.0.0:9092,SASL_SSL://0.0.0.0:9093"
PULSAR_PREFIX_kafkaAdvertisedListeners: "SASL_PLAINTEXT://advertisedAddress:9092,SASL_SSL://advertisedAddress:9093"
autoRecovery:
enableProvisionContainer: true
resources:
requests:
memory: 300Mi
cpu: 0.1
function:
replicaCount: 1
functionReplicaCount: 1
resources:
requests:
memory: 256Mi
cpu: 0.1
authenticationProviders: "com.datastax.oss.pulsar.auth.AuthenticationProviderOpenID,org.apache.pulsar.broker.authentication.AuthenticationProviderToken"
configData:
PULSAR_MEM: "-Xms156m -Xmx156m -XX:MaxDirectMemorySize=100m -XX:+ExitOnOutOfMemoryError"
PULSAR_EXTRA_OPTS: "-Dpulsar.log.root.level=info"
proxy:
replicaCount: 1
resources:
requests:
memory: 256Mi
cpu: 0.1
wsResources:
requests:
memory: 256Mi
cpu: 0.1
authenticationProviders: "com.datastax.oss.pulsar.auth.AuthenticationProviderOpenID,org.apache.pulsar.broker.authentication.AuthenticationProviderToken"
wsAuthenticationProviders: "com.datastax.oss.pulsar.auth.AuthenticationProviderOpenID,org.apache.pulsar.broker.authentication.AuthenticationProviderToken"
configData:
PULSAR_MEM: "-Xms200m -Xmx200m -XX:MaxDirectMemorySize=56m"
PULSAR_EXTRA_OPTS: "-Dpulsar.log.root.level=info"
PULSAR_PREFIX_kafkaListeners: "SASL_PLAINTEXT://0.0.0.0:9092,SASL_SSL://0.0.0.0:9093"
# here you have to customize the advertised name if you want to access
# Kafka from outside the kube
# Drop the SASL_PLAINTEXT endpoint if you want to allow only TLS (here and above)
# The Proxy uses the same TLS certificate configured for the Pulsar protocol
# PULSAR_PREFIX_kafkaAdvertisedListeners: "SASL_PLAINTEXT://pulsar-proxy:9092,SASL_SSL://pulsar-proxy:9093"
# if you use port forwarding to localhost then you have to set 'localhost'
PULSAR_PREFIX_kafkaAdvertisedListeners: "SASL_PLAINTEXT://pulsar-proxy:9092,SASL_SSL://pulsar-proxy:9093"
PULSAR_PREFIX_kopSchemaRegistryProxyEnableTls: "true"
PULSAR_PREFIX_kafkaProxySuperUserRole: "admin"
PULSAR_PREFIX_kopSchemaRegistryEnable: "true"
PULSAR_PREFIX_kopSchemaRegistryProxyPort: "8081"
PULSAR_PREFIX_messagingProtocols: "kafka"
PULSAR_PREFIX_proxyExtensions: "kafka"
PULSAR_PREFIX_brokerDeleteInactiveTopicsEnabled: "false"
PULSAR_PREFIX_kafkaTransactionCoordinatorEnabled: "true"
PULSAR_PREFIX_kopTlsEnabledWithBroker: "true"
PULSAR_PREFIX_authenticateMetricsEndpoint: "true"
autoPortAssign:
enablePlainTextWithTLS: true
service:
type: ClusterIP
autoPortAssign:
enabled: true
extensions:
enabled: true
extensions: "kafka"
containerPorts:
- name: kafkaplaintext
containerPort: 9092
- name: kafkassl
containerPort: 9093
- name: kafkaschemareg
containerPort: 8081
servicePorts:
- name: kafkaplaintext
port: 9092
protocol: TCP
targetPort: kafkaplaintext
- name: kafkassl
port: 9093
protocol: TCP
targetPort: kafkassl
- name: kafkaschemareg
port: 8081
protocol: TCP
targetPort: kafkaschemareg
grafanaDashboards:
enabled: true
pulsarAdminConsole:
replicaCount: 1
authMode: openidconnect
createUserSecret:
enabled: true
user: 'admin'
# NOTE: use your own password
password: 'e9JYtk83*4#PM8'
service:
type: ClusterIP
# Only expose the secure port. This is important because the pod itself only exposes the secure port when TLS
# is enabled.
ports:
- name: https
port: 443
targetPort: https
kube-prometheus-stack:
enabled: true
prometheusOperator:
enabled: true
grafana:
enabled: true
adminPassword: e9JYtk83*4#PM8
enablePulsarPodMonitor: true