Create redpanda.yaml
Browse files- redpanda.yaml +35 -0
redpanda.yaml
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
redpanda:
|
| 2 |
+
data_directory: /var/lib/redpanda/data
|
| 3 |
+
seed_servers: []
|
| 4 |
+
developer_mode: true
|
| 5 |
+
auto_create_topics_enabled: true
|
| 6 |
+
|
| 7 |
+
kafka_api:
|
| 8 |
+
- address: 0.0.0.0
|
| 9 |
+
port: 9092
|
| 10 |
+
advertised_kafka_api:
|
| 11 |
+
- address: localhost
|
| 12 |
+
port: 9092
|
| 13 |
+
|
| 14 |
+
admin:
|
| 15 |
+
- address: 0.0.0.0
|
| 16 |
+
port: 9644
|
| 17 |
+
|
| 18 |
+
pandaproxy:
|
| 19 |
+
pandaproxy_api:
|
| 20 |
+
- address: 0.0.0.0
|
| 21 |
+
port: 8082
|
| 22 |
+
advertised_pandaproxy_api:
|
| 23 |
+
- address: localhost
|
| 24 |
+
port: 8082
|
| 25 |
+
|
| 26 |
+
schema_registry:
|
| 27 |
+
schema_registry_api:
|
| 28 |
+
- address: 0.0.0.0
|
| 29 |
+
port: 8081
|
| 30 |
+
|
| 31 |
+
rpk:
|
| 32 |
+
kafka_api:
|
| 33 |
+
brokers: ["localhost:9092"]
|
| 34 |
+
admin_api:
|
| 35 |
+
addresses: ["localhost:9644"]
|