[release-1.7] fix: Make the orchestrator plugins list configurable in the default values file [RHDHBUGS-1889] (#194) - #196
Merged
Conversation
…alues file [RHDHBUGS-1889] (redhat-developer#194) Co-authored-by: Elai Shalev <129178340+elai-shalev@users.noreply.github.com>
Reviewer's GuideThis PR exposes the orchestrator plugins list as a configurable value in the Helm chart, updates the scaffolding to consume that list directly, and bumps the chart version accordingly. Entity relationship diagram for orchestrator.plugins configurationerDiagram
ORCHESTRATOR ||--o{ ORCHESTRATOR_PLUGIN : has
ORCHESTRATOR_PLUGIN {
bool disabled
string package
string integrity
object pluginConfig
}
Class diagram for the new orchestrator.plugins Helm values structureclassDiagram
class OrchestratorConfig {
+bool enabled
+list plugins
+bool serverlessLogicOperator.enabled
+bool serverlessOperator.enabled
+string sonataflowPlatform.createDBJobImage
}
class OrchestratorPlugin {
+bool disabled
+string package
+string integrity
+object pluginConfig
}
OrchestratorConfig "1" o-- "*" OrchestratorPlugin : plugins
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
Co-authored-by: rm3l <rm3l@users.noreply.github.com>
|
|
|
rm3l
enabled auto-merge (squash)
July 21, 2025 11:25
rm3l
deleted the
cherry-pick/release-1.7/rhdhbugs-1889-techdebt-helm-the-orchestrator-plugins-list-should-be-configurable-in-the-default-values-file
branch
July 21, 2025 12:06
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



Manual cherry-pick of #194 (comment)
Summary by Sourcery
Enable configurable orchestrator plugins by adding an orchestrator.plugins list to the default values, update templates and documentation to use the new configuration, and bump the chart version to 4.4.2
New Features:
Enhancements:
Build:
Documentation: