Skip to content

Deprecate StrimziKafkaContainer#154

Merged
see-quick merged 2 commits intostrimzi:mainfrom
see-quick:deprecate-kafka-container
Sep 16, 2025
Merged

Deprecate StrimziKafkaContainer#154
see-quick merged 2 commits intostrimzi:mainfrom
see-quick:deprecate-kafka-container

Conversation

@see-quick
Copy link
Copy Markdown
Member

@see-quick see-quick commented Sep 15, 2025

This PR initiates the migration of the Strimzi Kafka Container API. The plan is to remove this class from the public API in' 0.114.0' and enforce the use of StrimziKafkaCluster for all users. Strimzi Kafka Container will still be used internally (as encapsulation of most logic within the container).

Users could easily change their testing envs by following:

StrimziKafkaContainer systemUnderTest = new StrimziKafkaContainer()
systemUnderTest.start();

with

StrimziKafkaCluster systemUnderTest = new StrimziKafkaCluster.StrimziKafkaClusterBuilder()
       .withNumberOfBrokers(1)
       .build();
systemUnderTest.start();

Signed-off-by: see-quick <maros.orsak159@gmail.com>
@see-quick see-quick added this to the 0.113.0 milestone Sep 15, 2025
@see-quick see-quick requested a review from a team September 15, 2025 07:52
@see-quick see-quick self-assigned this Sep 15, 2025
@see-quick see-quick added the enhancement New feature or request label Sep 15, 2025
Signed-off-by: see-quick <maros.orsak159@gmail.com>
@see-quick see-quick merged commit 6bddea1 into strimzi:main Sep 16, 2025
7 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

enhancement New feature or request

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants