-
Notifications
You must be signed in to change notification settings - Fork 180
/
Copy pathcomponents-source.yaml
58 lines (58 loc) · 1.35 KB
/
components-source.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
---
apiVersion: platform.confluent.io/v1beta1
kind: Zookeeper
metadata:
name: zookeeper
namespace: source
spec:
podTemplate:
resources:
requests:
cpu: 100m # 1
memory: 512Mi # 4Gi
replicas: 3
image:
application: confluentinc/cp-zookeeper:7.8.0
init: confluentinc/confluent-init-container:2.10.0
dataVolumeCapacity: 10Gi
logVolumeCapacity: 10Gi
tls:
autoGeneratedCerts: true
---
apiVersion: platform.confluent.io/v1beta1
kind: Kafka
metadata:
name: kafka
namespace: source
spec:
podTemplate:
resources:
requests:
cpu: 100m # 1
memory: 512Mi # 4Gi
replicas: 3
image:
application: confluentinc/cp-server:7.8.0
init: confluentinc/confluent-init-container:2.10.0
dataVolumeCapacity: 10Gi
tls:
autoGeneratedCerts: true
listeners:
internal:
authentication:
type: plain
jaasConfig:
# This secret requires a key `plain-users.json`, with value being a JSON file with
# username & password values.
secretRef: credential
tls:
enabled: true
external:
authentication:
type: plain
jaasConfig:
# This secret requires a key `plain-users.json`, with value being a JSON file with
# username & password values.
secretRef: credential
tls:
enabled: true