-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Jakub Scholz <www@scholzj.com>
- Loading branch information
Showing
93 changed files
with
3,003 additions
and
4,225 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
apiVersion: kafka.strimzi.io/v1beta2 | ||
kind: KafkaConnect | ||
metadata: | ||
name: my-connect-cluster | ||
# annotations: | ||
# # use-connector-resources configures this KafkaConnect | ||
# # to use KafkaConnector resources to avoid | ||
# # needing to call the Connect REST API directly | ||
# strimzi.io/use-connector-resources: "true" | ||
spec: | ||
version: 3.1.0 | ||
replicas: 1 | ||
bootstrapServers: my-cluster-kafka-bootstrap:9093 | ||
tls: | ||
trustedCertificates: | ||
- secretName: my-cluster-cluster-ca-cert | ||
certificate: ca.crt | ||
config: | ||
group.id: connect-cluster | ||
offset.storage.topic: connect-cluster-offsets | ||
config.storage.topic: connect-cluster-configs | ||
status.storage.topic: connect-cluster-status | ||
# -1 means it will use the default replication factor configured in the broker | ||
config.storage.replication.factor: -1 | ||
offset.storage.replication.factor: -1 | ||
status.storage.replication.factor: -1 | ||
build: | ||
output: | ||
type: docker | ||
# This image will last only for 24 hours and might be overwritten by other users | ||
# Strimzi will use this tag to push the image. But it will use the digest to pull | ||
# the container image to make sure it pulls exactly the image we just built. So | ||
# it should not happen that you pull someone else's container image. However, we | ||
# recommend changing this to your own container registry or using a different | ||
# image name for any other than demo purposes. | ||
image: ttl.sh/strimzi-connect-example-3.1.0:24h | ||
plugins: | ||
- name: kafka-connect-file | ||
artifacts: | ||
- type: maven | ||
group: org.apache.kafka | ||
artifact: connect-file | ||
version: 3.1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
apiVersion: kafka.strimzi.io/v1beta2 | ||
kind: KafkaRebalance | ||
metadata: | ||
name: my-rebalance | ||
labels: | ||
strimzi.io/cluster: my-cluster | ||
# no goals specified, using the default goals from the Cruise Control configuration | ||
spec: | ||
mode: add-broker | ||
brokers: [3, 4] |
File renamed without changes.
10 changes: 10 additions & 0 deletions
10
examples/cruise-control/kafka-rebalance-remove-brokers.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
apiVersion: kafka.strimzi.io/v1beta2 | ||
kind: KafkaRebalance | ||
metadata: | ||
name: my-rebalance | ||
labels: | ||
strimzi.io/cluster: my-cluster | ||
# no goals specified, using the default goals from the Cruise Control configuration | ||
spec: | ||
mode: remove-broker | ||
brokers: [3, 4] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.