2
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-12-21 13:23:02 +01:00

add redpanda

This commit is contained in:
kev
2024-08-05 17:17:20 +08:00
parent 692d08f1b3
commit 5b38fa8ea0
6 changed files with 114 additions and 0 deletions

View File

@@ -0,0 +1,80 @@
# Copyright 2024 Redpanda Data, Inc.
#
# Use of this software is governed by the Business Source License
# included in the file licenses/BSL.md
#
# As of the Change Date specified in that file, in accordance with
# the Business Source License, use of this software will be governed
# by the Apache License, Version 2.0
# Redpanda configuration file
redpanda:
# Data directory where all the files will be stored.
# This directory MUST reside on an ext4 or xfs partition.
data_directory: "/var/lib/redpanda/data"
# The initial cluster nodes addresses
seed_servers: []
# Redpanda server
rpc_server:
address: "0.0.0.0"
port: 33145
# Redpanda server for other nodes to connect too
advertised_rpc_api:
address: "127.0.0.1"
port: 33145
# Kafka transport
kafka_api:
- address: "0.0.0.0"
port: 9092
# Kafka transport for other nodes to connect too
advertised_kafka_api:
- address: "127.0.0.1"
port: 9092
# Admin server includes metrics, and cluster management
admin:
address: "0.0.0.0"
port: 9644
# Skips most of the checks performed at startup (i.e. memory, xfs)
# not recomended for production use
developer_mode: true
# Enable Pandaproxy on port 8082
pandaproxy: {}
# Enable Schema Registry on port 8081
schema_registry: {}
rpk:
# TLS configuration.
#tls:
# The path to the root CA certificate (PEM)
#truststore_file: ""
# The path to the client certificate (PEM)
#cert_file: ""
# The path to the client certificate key (PEM)
#key_file: ""
# Available tuners
tune_network: false
tune_disk_scheduler: false
tune_disk_nomerges: false
tune_disk_irq: false
tune_fstrim: false
tune_cpu: false
tune_aio_events: false
tune_clocksource: false
tune_swappiness: false
enable_memory_locking: false
tune_coredump: false
coredump_dir: "/var/lib/redpanda/coredump"

View File

View File