Skip to content

Updated Orchestrator plugins to v1.6 - #182

Merged
openshift-merge-bot[bot] merged 1 commit into
redhat-developer:mainfrom
elai-shalev:orchestrator-plugins-1.6
Jul 2, 2025
Merged

Updated Orchestrator plugins to v1.6#182
openshift-merge-bot[bot] merged 1 commit into
redhat-developer:mainfrom
elai-shalev:orchestrator-plugins-1.6

Conversation

@elai-shalev

@elai-shalev elai-shalev commented Jul 1, 2025

Copy link
Copy Markdown

This PR will update the Orchestrator plugin version to the newly released v1.6.
These plugins are currently compatible with the RHDH version. The v1.5.1 plugings (which this PR replaces) will slowly become less predictable.

Related to: https://issues.redhat.com/browse/FLPATH-2355

Checklist

  • For each Chart updated, version bumped in the corresponding Chart.yaml according to Semantic Versioning.
  • For each Chart updated, variables are documented in the values.yaml and added to the corresponding README.md. The pre-commit utility can be used to generate the necessary content. Use pre-commit run -a to apply changes. The pre-commit Workflow will do this automatically for you if needed.
  • JSON Schema template updated and re-generated the raw schema via the pre-commit hook.
  • Tests pass using the Chart Testing tool and the ct lint command.
  • If you updated the orchestrator-infra chart, make sure the versions of the Knative CRDs are aligned with the versions of the CRDs installed by the OpenShift Serverless operators declared in the values.yaml file. See Installing Knative Eventing and Knative Serving CRDs for more details.

Summary by Sourcery

Update Orchestrator plugins to v1.6.0, enable relevant plugin entries, add the new orchestratorFormWidgets plugin, and bump the Helm chart version and documentation accordingly.

New Features:

  • Add orchestratorFormWidgets plugin to Backstage configuration

Enhancements:

  • Update orchestrator, orchestrator-backend-dynamic, and scaffolder-backend-module-orchestrator-dynamic plugin versions to v1.6.0
  • Enable previously disabled orchestrator plugin entries in the Backstage template

Build:

  • Bump Backstage Helm chart version to 4.2.14

Documentation:

  • Update README badge to reflect chart version 4.2.14

@sourcery-ai

sourcery-ai Bot commented Jul 1, 2025

Copy link
Copy Markdown

Reviewer's Guide

This PR updates the Backstage Helm chart by upgrading all orchestrator-related plugins to the new v1.6.0 release, introduces the orchestratorFormWidgets plugin with its configuration, adjusts plugin enablement and module references in the template, and bumps the chart version to 4.2.14.

Class diagram for orchestrator plugin configuration changes

classDiagram
    class OrchestratorPluginsConfig {
        +string scope
        +OrchestratorPlugin orchestrator
        +OrchestratorBackendPlugin orchestratorBackend
        +ScaffolderBackendOrchestratorPlugin scaffolderBackendOrchestrator
        +OrchestratorFormWidgetsPlugin orchestratorFormWidgets
    }
    class OrchestratorPlugin {
        +string package = "backstage-plugin-orchestrator@1.6.0"
        +string integrity
    }
    class OrchestratorBackendPlugin {
        +string package = "backstage-plugin-orchestrator-backend-dynamic@1.6.0"
        +string integrity
    }
    class ScaffolderBackendOrchestratorPlugin {
        +string package = "backstage-plugin-scaffolder-backend-module-orchestrator-dynamic@1.6.0"
        +string integrity
    }
    class OrchestratorFormWidgetsPlugin {
        +string package = "backstage-plugin-orchestrator-form-widgets@1.6.0"
        +string integrity
    }
    OrchestratorPluginsConfig --> OrchestratorPlugin : orchestrator
    OrchestratorPluginsConfig --> OrchestratorBackendPlugin : orchestratorBackend
    OrchestratorPluginsConfig --> ScaffolderBackendOrchestratorPlugin : scaffolderBackendOrchestrator
    OrchestratorPluginsConfig --> OrchestratorFormWidgetsPlugin : orchestratorFormWidgets
Loading

Class diagram for Helm chart version update

classDiagram
    class BackstageChart {
        +string version = "4.2.14"
    }
Loading

Class diagram for new orchestratorFormWidgets plugin integration

classDiagram
    class OrchestratorFormWidgetsPlugin {
        +string package = "backstage-plugin-orchestrator-form-widgets@1.6.0"
        +string integrity
    }
Loading

File-Level Changes

Change Details Files
Enable and adjust orchestrator plugins in Backstage partials
  • Toggled disabled flags from true to false for existing plugins
  • Removed deprecated module references under appIcons and dynamicRoutes
  • Added a new orchestratorFormWidgets plugin block with package, integrity, and pluginConfig
charts/backstage/templates/_partials.tpl
Bump orchestrator plugin package versions to v1.6.0 and add form-widgets
  • Updated orchestrator, backend, and scaffolder plugin packages to @1.6.0 with new integrity checksums
  • Introduced orchestratorFormWidgets entry at version 1.6.0 with its checksum
charts/backstage/templates/_partials.tpl
Increment chart version and update documentation badge
  • Bumped Chart.yaml version from 4.2.13 to 4.2.14
  • Updated the version badge in README.md to 4.2.14
charts/backstage/Chart.yaml
charts/backstage/README.md

Tips and commands

Interacting with Sourcery

  • Trigger a new review: Comment @sourcery-ai review on the pull request.
  • Continue discussions: Reply directly to Sourcery's review comments.
  • Generate a GitHub issue from a review comment: Ask Sourcery to create an
    issue from a review comment by replying to it. You can also reply to a
    review comment with @sourcery-ai issue to create an issue from it.
  • Generate a pull request title: Write @sourcery-ai anywhere in the pull
    request title to generate a title at any time. You can also comment
    @sourcery-ai title on the pull request to (re-)generate the title at any time.
  • Generate a pull request summary: Write @sourcery-ai summary anywhere in
    the pull request body to generate a PR summary at any time exactly where you
    want it. You can also comment @sourcery-ai summary on the pull request to
    (re-)generate the summary at any time.
  • Generate reviewer's guide: Comment @sourcery-ai guide on the pull
    request to (re-)generate the reviewer's guide at any time.
  • Resolve all Sourcery comments: Comment @sourcery-ai resolve on the
    pull request to resolve all Sourcery comments. Useful if you've already
    addressed all the comments and don't want to see them anymore.
  • Dismiss all Sourcery reviews: Comment @sourcery-ai dismiss on the pull
    request to dismiss all existing Sourcery reviews. Especially useful if you
    want to start fresh with a new review - don't forget to comment
    @sourcery-ai review to trigger a new review!

Customizing Your Experience

Access your dashboard to:

  • Enable or disable review features such as the Sourcery-generated pull request
    summary, the reviewer's guide, and others.
  • Change the review language.
  • Add, remove or edit custom review instructions.
  • Adjust other review settings.

Getting Help

@openshift-ci
openshift-ci Bot requested review from gazarenkov and rm3l July 1, 2025 12:38

@sourcery-ai sourcery-ai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey @elai-shalev - I've reviewed your changes and they look great!


Sourcery is free for open source - if you like our reviews please consider sharing them ✨
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.

Comment thread charts/backstage/Chart.yaml Outdated
Comment thread charts/backstage/README.md Outdated
@sonarqubecloud

sonarqubecloud Bot commented Jul 2, 2025

Copy link
Copy Markdown

@rm3l rm3l left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

/lgtm

@openshift-ci openshift-ci Bot added the lgtm label Jul 2, 2025
@openshift-merge-bot
openshift-merge-bot Bot merged commit ca2064d into redhat-developer:main Jul 2, 2025
8 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants