-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(quickstart): adding back kafka-setup #7181
Conversation
@@ -1,15 +1,4 @@ | |||
# Service definitions for Kafka Setup container. | |||
# Empty docker compose for kafka-setup as we have moved kafka-setup back into the main compose |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can this just be removed? It's not defining any services
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The CLIs that were installed in the last couple of days will try to pull this file, this way they won't fail.
Co-authored-by: Shirshanka Das <[email protected]>
Co-authored-by: Shirshanka Das <[email protected]>
Co-authored-by: Shirshanka Das <[email protected]>
This is change is fixing the failing quickstart for older versions.
Older versions are trying to pull the latest quickstart yaml from the repo (the one without kafka-setup), but since old CLI version waits for the
kafka-setup
job to finish, they were failing to start.Adding the job back (with a passthrough option) to avoid quickstart failures.
Checklist