File tree Expand file tree Collapse file tree 17 files changed +52
-52
lines changed
asyncapi.http.kafka.proxy
asyncapi.mqtt.kafka.proxy
openapi.asyncapi.kakfa.proxy Expand file tree Collapse file tree 17 files changed +52
-52
lines changed Original file line number Diff line number Diff line change @@ -60,12 +60,12 @@ services:
60
60
KAFKA_BOOTSTRAP_SERVER : kafka.examples.dev:29092
61
61
command :
62
62
- |
63
- echo -e "Creating kafka topic";
63
+ echo "Creating kafka topic";
64
64
/opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server $${KAFKA_BOOTSTRAP_SERVER} --create --if-not-exists --topic petstore-pets --config cleanup.policy=compact
65
65
/opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server $${KAFKA_BOOTSTRAP_SERVER} --create --if-not-exists --topic petstore-customers --config cleanup.policy=compact
66
66
/opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server $${KAFKA_BOOTSTRAP_SERVER} --create --if-not-exists --topic petstore-verified-customers --config cleanup.policy=compact
67
- echo -e "Successfully created the following topics:";
68
- /opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server $${KAFKA_BOOTSTRAP_SERVER} --list;
67
+ echo "Successfully created the following topics:";
68
+ /opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server $${KAFKA_BOOTSTRAP_SERVER} --list --exclude-internal ;
69
69
70
70
kafka-ui :
71
71
image : ghcr.io/kafbat/kafka-ui:v1.0.0
Original file line number Diff line number Diff line change @@ -60,13 +60,13 @@ services:
60
60
KAFKA_BOOTSTRAP_SERVER : kafka.examples.dev:29092
61
61
command :
62
62
- |
63
- echo -e "Creating kafka topic";
63
+ echo "Creating kafka topic";
64
64
/opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server $${KAFKA_BOOTSTRAP_SERVER} --create --if-not-exists --topic mqtt-messages
65
65
/opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server $${KAFKA_BOOTSTRAP_SERVER} --create --if-not-exists --topic streetlights
66
66
/opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server $${KAFKA_BOOTSTRAP_SERVER} --create --if-not-exists --topic mqtt-retained --config cleanup.policy=compact
67
67
/opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server $${KAFKA_BOOTSTRAP_SERVER} --create --if-not-exists --topic mqtt-sessions --config cleanup.policy=compact
68
- echo -e "Successfully created the following topics:";
69
- /opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server $${KAFKA_BOOTSTRAP_SERVER} --list;
68
+ echo "Successfully created the following topics:";
69
+ /opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server $${KAFKA_BOOTSTRAP_SERVER} --list --exclude-internal ;
70
70
71
71
kafka-ui :
72
72
image : ghcr.io/kafbat/kafka-ui:v1.0.0
Original file line number Diff line number Diff line change @@ -60,10 +60,10 @@ services:
60
60
KAFKA_BOOTSTRAP_SERVER : kafka.examples.dev:29092
61
61
command :
62
62
- |
63
- echo -e "Creating kafka topic";
63
+ echo "Creating kafka topic";
64
64
/opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server $${KAFKA_BOOTSTRAP_SERVER} --create --if-not-exists --topic events --config cleanup.policy=compact
65
- echo -e "Successfully created the following topics:";
66
- /opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server $${KAFKA_BOOTSTRAP_SERVER} --list;
65
+ echo "Successfully created the following topics:";
66
+ /opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server $${KAFKA_BOOTSTRAP_SERVER} --list --exclude-internal ;
67
67
68
68
kafka-ui :
69
69
image : ghcr.io/kafbat/kafka-ui:v1.0.0
Original file line number Diff line number Diff line change @@ -60,10 +60,10 @@ services:
60
60
KAFKA_BOOTSTRAP_SERVER : kafka.examples.dev:29092
61
61
command :
62
62
- |
63
- echo -e "Creating kafka topic";
63
+ echo "Creating kafka topic";
64
64
/opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server $${KAFKA_BOOTSTRAP_SERVER} --create --if-not-exists --topic echo-messages
65
- echo -e "Successfully created the following topics:";
66
- /opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server $${KAFKA_BOOTSTRAP_SERVER} --list;
65
+ echo "Successfully created the following topics:";
66
+ /opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server $${KAFKA_BOOTSTRAP_SERVER} --list --exclude-internal ;
67
67
68
68
kafka-ui :
69
69
image : ghcr.io/kafbat/kafka-ui:v1.0.0
Original file line number Diff line number Diff line change @@ -60,10 +60,10 @@ services:
60
60
KAFKA_BOOTSTRAP_SERVER : kafka.examples.dev:29092
61
61
command :
62
62
- |
63
- echo -e "Creating kafka topic";
63
+ echo "Creating kafka topic";
64
64
/opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server $${KAFKA_BOOTSTRAP_SERVER} --create --if-not-exists --topic messages
65
- echo -e "Successfully created the following topics:";
66
- /opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server $${KAFKA_BOOTSTRAP_SERVER} --list;
65
+ echo "Successfully created the following topics:";
66
+ /opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server $${KAFKA_BOOTSTRAP_SERVER} --list --exclude-internal ;
67
67
68
68
kafka-ui :
69
69
image : ghcr.io/kafbat/kafka-ui:v1.0.0
Original file line number Diff line number Diff line change @@ -75,11 +75,11 @@ services:
75
75
KAFKA_BOOTSTRAP_SERVER : kafka.examples.dev:29092
76
76
command :
77
77
- |
78
- echo -e "Creating kafka topic";
78
+ echo "Creating kafka topic";
79
79
/opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server $${KAFKA_BOOTSTRAP_SERVER} --create --if-not-exists --topic echo-requests
80
80
/opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server $${KAFKA_BOOTSTRAP_SERVER} --create --if-not-exists --topic echo-responses
81
- echo -e "Successfully created the following topics:";
82
- /opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server $${KAFKA_BOOTSTRAP_SERVER} --list;
81
+ echo "Successfully created the following topics:";
82
+ /opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server $${KAFKA_BOOTSTRAP_SERVER} --list --exclude-internal ;
83
83
84
84
kafka-ui :
85
85
image : ghcr.io/kafbat/kafka-ui:v1.0.0
Original file line number Diff line number Diff line change @@ -60,11 +60,11 @@ services:
60
60
KAFKA_BOOTSTRAP_SERVER : kafka.examples.dev:29092
61
61
command :
62
62
- |
63
- echo -e "Creating kafka topic";
63
+ echo "Creating kafka topic";
64
64
/opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server $${KAFKA_BOOTSTRAP_SERVER} --create --if-not-exists --topic items-requests
65
65
/opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server $${KAFKA_BOOTSTRAP_SERVER} --create --if-not-exists --topic items-responses
66
- echo -e "Successfully created the following topics:";
67
- /opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server $${KAFKA_BOOTSTRAP_SERVER} --list;
66
+ echo "Successfully created the following topics:";
67
+ /opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server $${KAFKA_BOOTSTRAP_SERVER} --list --exclude-internal ;
68
68
69
69
kafka-ui :
70
70
image : ghcr.io/kafbat/kafka-ui:v1.0.0
Original file line number Diff line number Diff line change @@ -61,10 +61,10 @@ services:
61
61
KAFKA_BOOTSTRAP_SERVER : kafka.examples.dev:29092
62
62
command :
63
63
- |
64
- echo -e "Creating kafka topic";
64
+ echo "Creating kafka topic";
65
65
/opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server $${KAFKA_BOOTSTRAP_SERVER} --create --if-not-exists --topic items-snapshots --config cleanup.policy=compact
66
- echo -e "Successfully created the following topics:";
67
- /opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server $${KAFKA_BOOTSTRAP_SERVER} --list;
66
+ echo "Successfully created the following topics:";
67
+ /opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server $${KAFKA_BOOTSTRAP_SERVER} --list --exclude-internal ;
68
68
69
69
kafka-ui :
70
70
image : ghcr.io/kafbat/kafka-ui:v1.0.0
Original file line number Diff line number Diff line change @@ -60,10 +60,10 @@ services:
60
60
KAFKA_BOOTSTRAP_SERVER : kafka.examples.dev:29092
61
61
command :
62
62
- |
63
- echo -e "Creating kafka topic";
63
+ echo "Creating kafka topic";
64
64
/opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server $${KAFKA_BOOTSTRAP_SERVER} --create --if-not-exists --topic items-snapshots --config cleanup.policy=compact
65
- echo -e "Successfully created the following topics:";
66
- /opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server $${KAFKA_BOOTSTRAP_SERVER} --list;
65
+ echo "Successfully created the following topics:";
66
+ /opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server $${KAFKA_BOOTSTRAP_SERVER} --list --exclude-internal ;
67
67
68
68
kafka-ui :
69
69
image : ghcr.io/kafbat/kafka-ui:v1.0.0
Original file line number Diff line number Diff line change @@ -60,10 +60,10 @@ services:
60
60
KAFKA_BOOTSTRAP_SERVER : kafka.examples.dev:29092
61
61
command :
62
62
- |
63
- echo -e "Creating kafka topic";
63
+ echo "Creating kafka topic";
64
64
/opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server $${KAFKA_BOOTSTRAP_SERVER} --create --if-not-exists --topic items-snapshots --config cleanup.policy=compact
65
- echo -e "Successfully created the following topics:";
66
- /opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server $${KAFKA_BOOTSTRAP_SERVER} --list;
65
+ echo "Successfully created the following topics:";
66
+ /opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server $${KAFKA_BOOTSTRAP_SERVER} --list --exclude-internal ;
67
67
68
68
kafka-ui :
69
69
image : ghcr.io/kafbat/kafka-ui:v1.0.0
Original file line number Diff line number Diff line change @@ -75,11 +75,11 @@ services:
75
75
KAFKA_BOOTSTRAP_SERVER : kafka.examples.dev:29092
76
76
command :
77
77
- |
78
- echo -e "Creating kafka topic";
78
+ echo "Creating kafka topic";
79
79
/opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server kafka:29092 --create --if-not-exists --topic events
80
- echo -e "Successfully created the following topics:";
81
- /opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server kafka:29092 --list;
82
- echo -e "Creating user";
80
+ echo "Successfully created the following topics:";
81
+ /opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server kafka:29092 --list --exclude-internal ;
82
+ echo "Creating user";
83
83
/opt/bitnami/kafka/bin/kafka-configs.sh \
84
84
--bootstrap-server kafka:29092 \
85
85
--alter \
Original file line number Diff line number Diff line change @@ -60,10 +60,10 @@ services:
60
60
KAFKA_BOOTSTRAP_SERVER : kafka.examples.dev:29092
61
61
command :
62
62
- |
63
- echo -e "Creating kafka topic";
63
+ echo "Creating kafka topic";
64
64
/opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server $${KAFKA_BOOTSTRAP_SERVER} --create --if-not-exists --topic my-requests
65
- echo -e "Successfully created the following topics:";
66
- /opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server $${KAFKA_BOOTSTRAP_SERVER} --list;
65
+ echo "Successfully created the following topics:";
66
+ /opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server $${KAFKA_BOOTSTRAP_SERVER} --list --exclude-internal ;
67
67
68
68
kafka-ui :
69
69
image : ghcr.io/kafbat/kafka-ui:v1.0.0
Original file line number Diff line number Diff line change @@ -60,10 +60,10 @@ services:
60
60
KAFKA_BOOTSTRAP_SERVER : kafka.examples.dev:29092
61
61
command :
62
62
- |
63
- echo -e "Creating kafka topic";
63
+ echo "Creating kafka topic";
64
64
/opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server $${KAFKA_BOOTSTRAP_SERVER} --create --if-not-exists --topic my-requests
65
- echo -e "Successfully created the following topics:";
66
- /opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server $${KAFKA_BOOTSTRAP_SERVER} --list;
65
+ echo "Successfully created the following topics:";
66
+ /opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server $${KAFKA_BOOTSTRAP_SERVER} --list --exclude-internal ;
67
67
68
68
kafka-ui :
69
69
image : ghcr.io/kafbat/kafka-ui:v1.0.0
Original file line number Diff line number Diff line change @@ -60,11 +60,11 @@ services:
60
60
KAFKA_BOOTSTRAP_SERVER : kafka.examples.dev:29092
61
61
command :
62
62
- |
63
- echo -e "Creating kafka topic";
63
+ echo "Creating kafka topic";
64
64
/opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server $${KAFKA_BOOTSTRAP_SERVER} --create --if-not-exists --topic items-requests
65
65
/opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server $${KAFKA_BOOTSTRAP_SERVER} --create --if-not-exists --topic items-responses --config cleanup.policy=compact
66
- echo -e "Successfully created the following topics:";
67
- /opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server $${KAFKA_BOOTSTRAP_SERVER} --list;
66
+ echo "Successfully created the following topics:";
67
+ /opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server $${KAFKA_BOOTSTRAP_SERVER} --list --exclude-internal ;
68
68
69
69
kafka-ui :
70
70
image : ghcr.io/kafbat/kafka-ui:v1.0.0
Original file line number Diff line number Diff line change @@ -60,13 +60,13 @@ services:
60
60
KAFKA_BOOTSTRAP_SERVER : kafka.examples.dev:29092
61
61
command :
62
62
- |
63
- echo -e "Creating kafka topic";
63
+ echo "Creating kafka topic";
64
64
/opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server $${KAFKA_BOOTSTRAP_SERVER} --create --if-not-exists --topic mqtt-messages
65
65
/opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server $${KAFKA_BOOTSTRAP_SERVER} --create --if-not-exists --topic mqtt-devices --config cleanup.policy=compact
66
66
/opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server $${KAFKA_BOOTSTRAP_SERVER} --create --if-not-exists --topic mqtt-retained --config cleanup.policy=compact
67
67
/opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server $${KAFKA_BOOTSTRAP_SERVER} --create --if-not-exists --topic mqtt-sessions --config cleanup.policy=compact
68
- echo -e "Successfully created the following topics:";
69
- /opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server $${KAFKA_BOOTSTRAP_SERVER} --list;
68
+ echo "Successfully created the following topics:";
69
+ /opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server $${KAFKA_BOOTSTRAP_SERVER} --list --exclude-internal ;
70
70
71
71
kafka-ui :
72
72
image : ghcr.io/kafbat/kafka-ui:v1.0.0
Original file line number Diff line number Diff line change @@ -61,10 +61,10 @@ services:
61
61
KAFKA_BOOTSTRAP_SERVER : kafka.examples.dev:29092
62
62
command :
63
63
- |
64
- echo -e "Creating kafka topic";
64
+ echo "Creating kafka topic";
65
65
/opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server $${KAFKA_BOOTSTRAP_SERVER} --create --if-not-exists --topic petstore-pets --config cleanup.policy=compact
66
- echo -e "Successfully created the following topics:";
67
- /opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server $${KAFKA_BOOTSTRAP_SERVER} --list;
66
+ echo "Successfully created the following topics:";
67
+ /opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server $${KAFKA_BOOTSTRAP_SERVER} --list --exclude-internal ;
68
68
69
69
kafka-ui :
70
70
image : ghcr.io/kafbat/kafka-ui:v1.0.0
Original file line number Diff line number Diff line change @@ -61,10 +61,10 @@ services:
61
61
KAFKA_BOOTSTRAP_SERVER : kafka.examples.dev:29092
62
62
command :
63
63
- |
64
- echo -e "Creating kafka topic";
64
+ echo "Creating kafka topic";
65
65
/opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server $${KAFKA_BOOTSTRAP_SERVER} --create --if-not-exists --topic events --config cleanup.policy=compact
66
- echo -e "Successfully created the following topics:";
67
- /opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server $${KAFKA_BOOTSTRAP_SERVER} --list;
66
+ echo "Successfully created the following topics:";
67
+ /opt/bitnami/kafka/bin/kafka-topics.sh --bootstrap-server $${KAFKA_BOOTSTRAP_SERVER} --list --exclude-internal ;
68
68
69
69
kafka-ui :
70
70
image : ghcr.io/kafbat/kafka-ui:v1.0.0
You can’t perform that action at this time.
0 commit comments