forked from deviceinsight/kafkactl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
it-config.yml
52 lines (48 loc) · 1.01 KB
/
it-config.yml
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
contexts:
# default context without SASL
default:
brokers:
- localhost:19093
- localhost:29093
- localhost:39093
requestTimeout: 15s
avro:
schemaRegistry: localhost:18081
kafkaversion: 2.6.0
# context without avro
no-avro:
brokers:
- localhost:19093
- localhost:29093
- localhost:39093
requestTimeout: 15s
kafkaversion: 2.6.0
# sasl context as admin
sasl-admin:
brokers:
- localhost:19092
- localhost:29092
- localhost:39092
requestTimeout: 15s
sasl:
enabled: true
username: admin
password: admin-secret
avro:
schemaRegistry: localhost:18081
kafkaversion: 2.6.0
# sasl context as user
sasl-user:
brokers:
- localhost:19092
- localhost:29092
- localhost:39092
requestTimeout: 15s
sasl:
enabled: true
username: user
password: user-secret
avro:
schemaRegistry: localhost:18081
kafkaversion: 2.6.0
current-context: default