-
Notifications
You must be signed in to change notification settings - Fork 1
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
Refactor streams-bootstrap cleanup jobs as individual HelmApp #398
Conversation
Preceeds #398 --------- Co-authored-by: Salomon Popp <[email protected]>
Please document the breaking changes in the migration guide |
@@ -2,8 +2,10 @@ helm-app.yaml: | |||
- app-helm-app.yaml | |||
- repo_config-helm-app.yaml | |||
kafka-app.yaml: | |||
- prefix.yaml |
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.
weird that those weren't there before 😛 nobody noticed
@@ -40,6 +40,22 @@ All Helm-specific parts of the built-in [`KubernetesApp`](../core-concepts/compo | |||
... | |||
``` | |||
|
|||
## [Create StreamsBootstrap component & refactor cleanup jobs as individual HelmApp](https://github.com/bakdata/kpops/pull/398) | |||
|
|||
Previously the default `KafkaApp` component configured the [streams-bootstrap](https://bakdata.github.io/streams-bootstrap/) Helm Charts. Now, this component is no longer tied to Helm (or Kubernetes). Instead, there is a new `StreamsBootstrap` component that configures the Helm Chart repository for the components that use it, e.g. `StreamsApp` and `ProducerApp`. If you are using non-default values for the Helm Chart repository or version, it has to be updated as shown below. |
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.
What is the point of having KafkaApp then?
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.
implement the logic related to Kafka, i.e. creation of output topics
Depends on #397
extracted the cleanup job needed for streams-bootstrap producer and streams apps to its own HelmApp nested inside the parent component
StreamsBootstrap
base