-
Notifications
You must be signed in to change notification settings - Fork 1.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
Deprecate the External Configuration Volumes #10566
Deprecate the External Configuration Volumes #10566
Conversation
Signed-off-by: Jakub Scholz <www@scholzj.com>
documentation/modules/configuring/proc-loading-config-from-file.adoc
Outdated
Show resolved
Hide resolved
Signed-off-by: Jakub Scholz <www@scholzj.com>
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.
LGTM
/azp run regression |
Azure Pipelines successfully started running 1 pipeline(s). |
documentation/modules/configuring/proc-loading-config-from-file.adoc
Outdated
Show resolved
Hide resolved
documentation/modules/configuring/proc-loading-config-from-files.adoc
Outdated
Show resolved
Hide resolved
Signed-off-by: Jakub Scholz <www@scholzj.com>
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.
Looks good, thanks.
Suggestion on how the volumes name to volume mount name thing might be clearer in the doc. The callout ref in the callout didn't look good in the build.
api/src/main/java/io/strimzi/api/kafka/model/connect/ExternalConfiguration.java
Outdated
Show resolved
Hide resolved
documentation/modules/configuring/proc-loading-config-from-file.adoc
Outdated
Show resolved
Hide resolved
documentation/modules/configuring/proc-loading-config-from-file.adoc
Outdated
Show resolved
Hide resolved
documentation/modules/configuring/proc-loading-config-from-files.adoc
Outdated
Show resolved
Hide resolved
documentation/modules/configuring/proc-loading-config-from-files.adoc
Outdated
Show resolved
Hide resolved
Signed-off-by: Jakub Scholz <www@scholzj.com>
Thanks. Your suggestions (as always) look better than my texts :-D. |
/azp run regression |
Azure Pipelines successfully started running 1 pipeline(s). |
Type of change
Description
In Strimzi 0.43, we added the additional volumes feature -> it can be used with any container to mount new volumes based on Secret, ConfigMap, EmptyDir or PVC.
But already previously, in Kafka Connect, we had the External configuration volumes that allow to mount additional Secret or ConfigMaps as a volume to the Connect containers. So this now duplicates the newly added additional volumes feature.
This PR deprecates the External Configuration volumes. Reducing a duplicate functionality would simplify the code maintenance and testing going forward. It also updates the documentation to also use the additional volumes instead of the external configuration volumes. The API will be still present and used until it is removed in
v1
API.Checklist