Skip to content

fix(orchestrator-infra): Bump OSL to 1.37.1 [RHIDP-11679]#317

Merged
openshift-merge-bot[bot] merged 1 commit intoredhat-developer:mainfrom
rm3l:rhidp-11679-bump-openshift-serverless-logic-version-to-1.37.1-in-the-install-methods
Feb 13, 2026
Merged

fix(orchestrator-infra): Bump OSL to 1.37.1 [RHIDP-11679]#317
openshift-merge-bot[bot] merged 1 commit intoredhat-developer:mainfrom
rm3l:rhidp-11679-bump-openshift-serverless-logic-version-to-1.37.1-in-the-install-methods

Conversation

@rm3l
Copy link
Copy Markdown
Member

@rm3l rm3l commented Feb 13, 2026

Description of the change

Bumps OSL to 1.37.1, as this is a requirement for RHDH 1.9.0

Which issue(s) does this PR fix or relate to

ref RHIDP-11679

How to test changes / Special notes to the reviewer

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. Run pre-commit run --all-files to run the hooks and then push any resulting changes. The pre-commit Workflow will enforce this and warn 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.

@sonarqubecloud
Copy link
Copy Markdown

@rhdh-qodo-merge
Copy link
Copy Markdown

PR Reviewer Guide 🔍

Here are some key observations to aid the review process:

🎫 Ticket compliance analysis 🔶

RHIDP-11679 - Partially compliant

Compliant requirements:

  • Install Methods reference OSL 1.37.1

Non-compliant requirements:

Requires further human verification:

  • Confirm the chart actually installs/aligns with OSL 1.37.1 in a real cluster (operator/CRDs compatibility).
  • Run ct lint / chart-testing to ensure the bump doesn’t break Helm chart validation (not checked per PR checklist).
⏱️ Estimated effort to review: 2 🔵🔵⚪⚪⚪
🔒 No security concerns identified
⚡ Recommended focus areas for review

CRD Alignment

The docs were updated to pull CRDs from the 1.37.1 bundle and warn about re-adding helm.sh/hook annotations, but the diff doesn’t show the crds/ content being updated. Validate that the CRDs committed under crds/ match the 1.37.1 bundle and that any required Helm hook annotations are present so install/upgrade behavior remains correct.

The KnativeEventing and KnativeServing CRDs are required for this chart to run. These CRDs need to be present under the `crds/` directory before running `helm install`.
After installing the openshift-serverless subscription, more Knative CRDs will be installed on the cluster.

The versions of the CRDs present in the chart and the ones in the subscription must match. In order to verify the correct CRD, use this following command to extract the CRD:

```bash
export osl_bundle=registry.redhat.io/openshift-serverless-1/serverless-operator-bundle:1.37.1
podman container run --rm --entrypoint cat "$osl_bundle" /manifests/operator_v1beta1_knativeeventing_crd.yaml > crds/knative-eventing/knative-eventing-crd.yaml

podman container run --rm --entrypoint cat "$osl_bundle" /manifests/operator_v1beta1_knativeserving_crd.yaml > crds/knative-serving/knative-serving-crd.yaml

After running these commands, you may need to re-add the helm.sh/hook annotations.


</details>

<details><summary><a href='https://github.com/redhat-developer/rhdh-chart/pull/317/files#diff-a96262cf9dd5a484d6e49a1c0c298b646a891b131c23faaba2339c3cdadafb16R83-R95'><strong>Doc Accuracy</strong></a>

The generated template now uses `podman` and writes to `crds/knative-eventing/...` and `crds/knative-serving/...`. Ensure these paths match the repository layout and that switching from `docker` to `podman` is acceptable for the intended audience (or document alternatives), since incorrect instructions could block users from updating CRDs correctly.
</summary>

```txt
The KnativeEventing and KnativeServing CRDs are required for this chart to run. These CRDs need to be present under the `crds/` directory before running `helm install`.
After installing the openshift-serverless subscription, more Knative CRDs will be installed on the cluster. 

The versions of the CRDs present in the chart and the ones in the subscription must match. In order to verify the correct CRD, use this following command to extract the CRD:

```bash
export osl_bundle=registry.redhat.io/openshift-serverless-1/serverless-operator-bundle:1.37.1
podman container run --rm --entrypoint cat "$osl_bundle" /manifests/operator_v1beta1_knativeeventing_crd.yaml > crds/knative-eventing/knative-eventing-crd.yaml

podman container run --rm --entrypoint cat "$osl_bundle" /manifests/operator_v1beta1_knativeserving_crd.yaml > crds/knative-serving/knative-serving-crd.yaml

After running these commands, you may need to re-add the helm.sh/hook annotations.


</details>

</td></tr>
<tr><td>

<details><summary>📄 References</summary><ol><li><a href="https://github.com/redhat-developer/rhdh-chart/blob/0212d7c/charts/orchestrator-infra/ci/upstream-olm-values.yaml/#L1-L13">redhat-developer/rhdh-chart/charts/orchestrator-infra/ci/upstream-olm-values.yaml [1-13]</a></li>

<li><a href="https://github.com/redhat-developer/rhdh-chart/blob/0212d7c/charts/backstage/values.yaml/#L357-L364">redhat-developer/rhdh-chart/charts/backstage/values.yaml [357-364]</a></li>

<li><a href="https://github.com/redhat-developer/rhdh-chart/blob/47c39ed/config/scorecard/patches/olm.config.yaml/#L1-L40">redhat-developer/rhdh-operator/config/scorecard/patches/olm.config.yaml [1-40]</a></li>

<li><a href="https://github.com/redhat-developer/rhdh-chart/blob/47c39ed/config/scorecard/patches/olm.config.yaml/#L41-L50">redhat-developer/rhdh-operator/config/scorecard/patches/olm.config.yaml [41-50]</a></li>

<li><a href="https://github.com/redhat-developer/rhdh-chart/blob/0212d7c/charts/orchestrator-infra/templates/tests/infra-test.yaml/#L1-L1">redhat-developer/rhdh-chart/charts/orchestrator-infra/templates/tests/infra-test.yaml [0-2]</a></li>

<li><a href="https://github.com/redhat-developer/rhdh-chart/blob/0212d7c/charts/orchestrator-software-templates-infra/templates/tests/infra-test.yaml/#L1-L1">redhat-developer/rhdh-chart/charts/orchestrator-software-templates-infra/templates/tests/infra-test.yaml [0-2]</a></li>

<li><a href="https://github.com/redhat-developer/rhdh-chart/blob/0212d7c/charts/orchestrator-software-templates-infra/Chart.yaml/#L1-L17">redhat-developer/rhdh-chart/charts/orchestrator-software-templates-infra/Chart.yaml [1-17]</a></li>

<li><a href="https://github.com/redhat-developer/rhdh-chart/blob/0212d7c/charts/orchestrator-software-templates/values.yaml/#L1-L12">redhat-developer/rhdh-chart/charts/orchestrator-software-templates/values.yaml [1-12]</a></li>

</ol></details>

</td></tr>
</table>

@rhdh-qodo-merge rhdh-qodo-merge Bot added the enhancement New feature or request label Feb 13, 2026
@rhdh-qodo-merge
Copy link
Copy Markdown

rhdh-qodo-merge Bot commented Feb 13, 2026

PR Type

(Describe updated until commit 2a17c82)

Enhancement


Description

  • Bump OpenShift Serverless Logic operator to version 1.37.1

  • Update chart version from 0.5.0 to 0.5.1

  • Improve CRD extraction documentation with updated commands

  • Replace docker with podman and add variable for bundle reference


File Walkthrough

Relevant files
Configuration changes
Chart.yaml
Update chart version to 0.5.1                                                       

charts/orchestrator-infra/Chart.yaml

  • Bumped chart version from 0.5.0 to 0.5.1
+1/-1     
values.schema.json
Update JSON schema with OSL 1.37.1 version                             

charts/orchestrator-infra/values.schema.json

  • Updated startingCSV default from logic-operator.v1.37.0 to
    logic-operator.v1.37.1
+1/-1     
values.schema.tmpl.json
Update schema template with OSL 1.37.1 version                     

charts/orchestrator-infra/values.schema.tmpl.json

  • Updated startingCSV default from logic-operator.v1.37.0 to
    logic-operator.v1.37.1
+1/-1     
values.yaml
Update values with OSL 1.37.1 operator version                     

charts/orchestrator-infra/values.yaml

  • Updated serverlessLogicOperator startingCSV from
    logic-operator.v1.37.0 to logic-operator.v1.37.1
+1/-1     
Documentation
README.md
Update documentation for OSL 1.37.1 and improve CRD extraction

charts/orchestrator-infra/README.md

  • Updated version badge from 0.5.0 to 0.5.1
  • Updated helm install command example to use version 0.5.1
  • Updated OSL bundle version from 1.37.0 to 1.37.1 in documentation
  • Improved CRD extraction commands using podman with environment
    variable
  • Added note about re-adding helm.sh/hook annotations after extraction
  • Fixed formatting: wrapped crds/ in backticks
+10/-7   
README.md.gotmpl
Update template with improved CRD extraction instructions

charts/orchestrator-infra/README.md.gotmpl

  • Updated OSL bundle version from 1.37.0 to 1.37.1
  • Replaced docker commands with podman container run
  • Added environment variable for bundle reference
  • Improved CRD extraction paths to include subdirectories
  • Added guidance about re-adding helm.sh/hook annotations
  • Fixed formatting: wrapped crds/ in backticks
+8/-5     

@rhdh-qodo-merge
Copy link
Copy Markdown

PR Code Suggestions ✨

Explore these optional code suggestions:

CategorySuggestion                                                                                                                                    Impact
High-level
Bundled CRDs are not updated

The PR updates the operator version to 1.37.1 but omits the corresponding
required updates for the Custom Resource Definition (CRD) files. To prevent
installation failures, the Knative CRD files in the crds/ directory must be
updated to match the new operator version.

Examples:

charts/orchestrator-infra/values.yaml [18]
      startingCSV: logic-operator.v1.37.1
charts/orchestrator-infra/README.md [111-117]
The versions of the CRDs present in the chart and the ones in the subscription must match. In order to verify the correct CRD, use this following command to extract the CRD:

```bash
export osl_bundle=registry.redhat.io/openshift-serverless-1/serverless-operator-bundle:1.37.1
podman container run --rm --entrypoint cat "$osl_bundle" /manifests/operator_v1beta1_knativeeventing_crd.yaml > crds/knative-eventing/knative-eventing-crd.yaml

podman container run --rm --entrypoint cat "$osl_bundle" /manifests/operator_v1beta1_knativeserving_crd.yaml > crds/knative-serving/knative-serving-crd.yaml

Solution Walkthrough:

Before:

# charts/orchestrator-infra/values.yaml
serverlessLogicOperator:
  subscription:
    spec:
      # The initial version of the operator
      startingCSV: logic-operator.v1.37.1

# charts/orchestrator-infra/crds/ (not updated in PR)
# Contains CRD definitions corresponding to operator version 1.37.0

After:

# charts/orchestrator-infra/values.yaml
serverlessLogicOperator:
  subscription:
    spec:
      # The initial version of the operator
      startingCSV: logic-operator.v1.37.1

# charts/orchestrator-infra/crds/ (files are updated)
# Contains CRD definitions corresponding to operator version 1.37.1
# e.g., crds/knative-eventing/knative-eventing-crd.yaml
# e.g., crds/knative-serving/knative-serving-crd.yaml
Suggestion importance[1-10]: 9

__

Why: The suggestion correctly identifies a critical omission; the PR updates operator version references but fails to update the bundled CRD files, which will cause installation failures because the CRD and operator versions must match.

High
Possible issue
Fix incorrect CRD download paths

Correct the CRD download paths in the README.md file. The commands should save
CRD files directly into the crds/ directory, not into subdirectories, as Helm
does not search subdirectories for CRDs.

charts/orchestrator-infra/README.md [115-117]

-podman container run --rm --entrypoint cat "$osl_bundle" /manifests/operator_v1beta1_knativeeventing_crd.yaml > crds/knative-eventing/knative-eventing-crd.yaml
+podman container run --rm --entrypoint cat "$osl_bundle" /manifests/operator_v1beta1_knativeeventing_crd.yaml > crds/knative-eventing-crd.yaml
 
-podman container run --rm --entrypoint cat "$osl_bundle" /manifests/operator_v1beta1_knativeserving_crd.yaml > crds/knative-serving/knative-serving-crd.yaml
+podman container run --rm --entrypoint cat "$osl_bundle" /manifests/operator_v1beta1_knativeserving_crd.yaml > crds/knative-serving-crd.yaml
  • Apply / Chat
Suggestion importance[1-10]: 8

__

Why: The suggestion correctly identifies that Helm does not search for CRDs in subdirectories of the crds folder, and the instructions added in the PR would cause the installation to fail. This is a critical correction for the documentation to be accurate.

Medium
  • More

@rm3l rm3l marked this pull request as ready for review February 13, 2026 10:50
@rm3l rm3l requested a review from a team as a code owner February 13, 2026 10:50
@rhdh-qodo-merge
Copy link
Copy Markdown

PR Reviewer Guide 🔍

Here are some key observations to aid the review process:

🎫 Ticket compliance analysis 🔶

RHIDP-11679 - Partially compliant

Compliant requirements:

  • Update the install methods to point to OSL 1.37.1.

Non-compliant requirements:

Requires further human verification:

  • Validate that the chart’s packaged Knative CRDs under charts/orchestrator-infra/crds/ are aligned with the CRDs shipped by the serverless-operator-bundle:1.37.1 referenced in the documentation.
  • Run ct lint / chart testing to confirm the chart renders and lints cleanly with the updated values/docs.
⏱️ Estimated effort to review: 2 🔵🔵⚪⚪⚪
🔒 No security concerns identified
⚡ Recommended focus areas for review

Doc correctness

The updated CRD extraction instructions now use podman and write output directly into crds/knative-eventing/ and crds/knative-serving/. This should be validated for correctness (paths exist, output filenames match what the chart expects, and the referenced bundle/tag is correct). Also confirm the note about re-adding helm.sh/hook annotations matches the repository’s CRD conventions/workflow.

The KnativeEventing and KnativeServing CRDs are required for this chart to run. These CRDs need to be present under the `crds/` directory before running `helm install`.
After installing the openshift-serverless subscription, more Knative CRDs will be installed on the cluster.

The versions of the CRDs present in the chart and the ones in the subscription must match. In order to verify the correct CRD, use this following command to extract the CRD:

```bash
export osl_bundle=registry.redhat.io/openshift-serverless-1/serverless-operator-bundle:1.37.1
podman container run --rm --entrypoint cat "$osl_bundle" /manifests/operator_v1beta1_knativeeventing_crd.yaml > crds/knative-eventing/knative-eventing-crd.yaml

podman container run --rm --entrypoint cat "$osl_bundle" /manifests/operator_v1beta1_knativeserving_crd.yaml > crds/knative-serving/knative-serving-crd.yaml

After running these commands, you may need to re-add the helm.sh/hook annotations.


</details>

<details><summary><a href='https://github.com/redhat-developer/rhdh-chart/pull/317/files#diff-04e92a4f0b7513b0341d3f8487f044b6954d4a640d246f2725662b4ddac4e696R10-R19'><strong>Version alignment</strong></a>

The `serverlessLogicOperator.subscription.spec.startingCSV` default was bumped to `logic-operator.v1.37.1`. Ensure this CSV is available in the configured catalog source/channel and that it remains compatible with the chart’s CRDs and any other operator/version constraints in the chart.
</summary>

```yaml
# --  whether the update should be installed automatically
installPlanApproval: Manual
# -- name of the operator package
name: logic-operator
# --  name of the catalog source
source: redhat-operators
sourceNamespace: openshift-marketplace
# -- The initial version of the operator, must match CRDs installed by the chart
startingCSV: logic-operator.v1.37.1

📄 References
  1. redhat-developer/rhdh-chart/charts/orchestrator-infra/ci/upstream-olm-values.yaml [1-13]
  2. redhat-developer/rhdh-chart/charts/backstage/values.yaml [357-364]
  3. redhat-developer/rhdh-chart/charts/orchestrator-infra/templates/tests/infra-test.yaml [0-2]
  4. redhat-developer/rhdh-operator/config/scorecard/patches/olm.config.yaml [1-40]
  5. redhat-developer/rhdh-chart/charts/orchestrator-software-templates-infra/Chart.yaml [1-17]
  6. redhat-developer/rhdh-operator/dist/rhdh/install.yaml [431-438]
  7. redhat-developer/rhdh-chart/charts/orchestrator-software-templates-infra/templates/tests/infra-test.yaml [0-2]
  8. redhat-developer/rhdh-chart/charts/orchestrator-software-templates-infra/templates/openshift-pipelines/subscription.yaml [0-2]

@rm3l
Copy link
Copy Markdown
Member Author

rm3l commented Feb 13, 2026

/cherry-pick release-1.9

@openshift-cherrypick-robot
Copy link
Copy Markdown

@rm3l: once the present PR merges, I will cherry-pick it on top of release-1.9 in a new PR and assign it to you.

Details

In response to this:

/cherry-pick release-1.9

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository.

@rhdh-qodo-merge
Copy link
Copy Markdown

PR Code Suggestions ✨

Explore these optional code suggestions:

CategorySuggestion                                                                                                                                    Impact
High-level
Update bundled CRDs for new operator

The PR updates the operator version to 1.37.1 but omits the required update for
the bundled CRD files in the crds/ directory. These CRDs must be updated to
match the new operator version to prevent breaking the chart.

Examples:

charts/orchestrator-infra/values.yaml [18]
      startingCSV: logic-operator.v1.37.1
charts/orchestrator-infra/README.md [111-117]
The versions of the CRDs present in the chart and the ones in the subscription must match. In order to verify the correct CRD, use this following command to extract the CRD:

```bash
export osl_bundle=registry.redhat.io/openshift-serverless-1/serverless-operator-bundle:1.37.1
podman container run --rm --entrypoint cat "$osl_bundle" /manifests/operator_v1beta1_knativeeventing_crd.yaml > crds/knative-eventing/knative-eventing-crd.yaml

podman container run --rm --entrypoint cat "$osl_bundle" /manifests/operator_v1beta1_knativeserving_crd.yaml > crds/knative-serving/knative-serving-crd.yaml

Solution Walkthrough:

Before:

# charts/orchestrator-infra/values.yaml
serverlessLogicOperator:
  subscription:
    startingCSV: logic-operator.v1.37.1

# crds/ directory
# Contains CRD files for operator v1.37.0, which are not shown in the PR diff.
# This creates a mismatch with the operator version specified in values.yaml.

After:

# charts/orchestrator-infra/values.yaml
serverlessLogicOperator:
  subscription:
    startingCSV: logic-operator.v1.37.1

# crds/ directory
# Should contain updated CRD files for operator v1.37.1.
# For example, crds/knative-eventing/knative-eventing-crd.yaml and
# crds/knative-serving/knative-serving-crd.yaml are updated.
Suggestion importance[1-10]: 9

__

Why: This suggestion correctly identifies a critical omission; the PR updates the operator version but fails to update the corresponding CRD files, which the chart's own documentation states is required and will likely break the installation.

High
General
Create CRD directories first

Add mkdir -p crds/knative-eventing crds/knative-serving before the podman
commands to ensure the target directories for CRD extraction exist, preventing
potential errors.

charts/orchestrator-infra/README.md [114-117]

+mkdir -p crds/knative-eventing crds/knative-serving
 export osl_bundle=registry.redhat.io/openshift-serverless-1/serverless-operator-bundle:1.37.1
 podman container run --rm --entrypoint cat "$osl_bundle" /manifests/operator_v1beta1_knativeeventing_crd.yaml > crds/knative-eventing/knative-eventing-crd.yaml
 podman container run --rm --entrypoint cat "$osl_bundle" /manifests/operator_v1beta1_knativeserving_crd.yaml > crds/knative-serving/knative-serving-crd.yaml
  • Apply / Chat
Suggestion importance[1-10]: 7

__

Why: The suggestion correctly identifies that the provided commands will fail if the target directories do not exist, and proposes adding mkdir -p to make the instructions robust.

Medium
  • More

@openshift-ci
Copy link
Copy Markdown

openshift-ci Bot commented Feb 13, 2026

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: gazarenkov

The full list of commands accepted by this bot can be found here.

The pull request process is described here

Details Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@openshift-merge-bot openshift-merge-bot Bot merged commit bd57f9f into redhat-developer:main Feb 13, 2026
6 checks passed
@openshift-cherrypick-robot
Copy link
Copy Markdown

@rm3l: #317 failed to apply on top of branch "release-1.9":

Applying: fix(orchestrator-infra): Bump OSL to 1.37.1 [RHIDP-11679]
Using index info to reconstruct a base tree...
M	charts/orchestrator-infra/Chart.yaml
M	charts/orchestrator-infra/README.md
Falling back to patching base and 3-way merge...
Auto-merging charts/orchestrator-infra/README.md
CONFLICT (content): Merge conflict in charts/orchestrator-infra/README.md
Auto-merging charts/orchestrator-infra/Chart.yaml
CONFLICT (content): Merge conflict in charts/orchestrator-infra/Chart.yaml
error: Failed to merge in the changes.
hint: Use 'git am --show-current-patch=diff' to see the failed patch
hint: When you have resolved this problem, run "git am --continue".
hint: If you prefer to skip this patch, run "git am --skip" instead.
hint: To restore the original branch and stop patching, run "git am --abort".
hint: Disable this message with "git config set advice.mergeConflict false"
Patch failed at 0001 fix(orchestrator-infra): Bump OSL to 1.37.1 [RHIDP-11679]

Details

In response to this:

/cherry-pick release-1.9

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository.

@rm3l rm3l deleted the rhidp-11679-bump-openshift-serverless-logic-version-to-1.37.1-in-the-install-methods branch February 13, 2026 11:49
rm3l added a commit to rm3l/rhdh-chart that referenced this pull request Mar 23, 2026
…12d0b1

312d0b1 chore(deps): bump docker/login-action from 3.7.0 to 4.0.0 (redhat-developer#317)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: 312d0b175374e4c63a8133e17ddb29660e1053d0
openshift-merge-bot Bot pushed a commit that referenced this pull request Mar 30, 2026
] (#325)

* Squashed 'charts/backstage/vendor/backstage/' content from commit 4862002

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: 4862002697554ad025d82355b54724939eb6af61

* chore: switch dependency on upstream chart to local vendor copy

* chore: add CONTRIBUTING guide with a note on the upstream Backstage chart dependency

* ci: add nightly workflow for syncing the subtree with the upstream backstage chart

Assisted-by: Cursor

* chore: bump backstage chart version

* chore: skip vendored charts from JSON schema dereference script

* chore: skip vendored charts from Helm Docs handling

* chore: run pre-commit hooks

* chore: remove reference to the upstream Backstage chart repo

* chore: exclude vendored chart from SonarCloud analysis

* ci: re-add backstage repo dependency to test action as it is needed to test in-place upgrades

* chore: update vendored charts dependencies manually and track them

This is so rhdh-chart devs don't need to update them locally. The pre-commit updates should also help up enforce this

* chore: run pre-commit hooks

* chore: skip files in vendor/ from the Renovate auto-discovery

* fixup! chore: skip vendored charts from JSON schema dereference script

* Address review comments

* chore: add .gitleaks.toml ignoring some CI values files containing dummy secrets

* Squashed 'charts/backstage/vendor/backstage/' changes from 4862002..312d0b1

312d0b1 chore(deps): bump docker/login-action from 3.7.0 to 4.0.0 (#317)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: 312d0b175374e4c63a8133e17ddb29660e1053d0

* chore: regen chart lock file

* ci: remove upstream backstage repo from test GH action as it is now useless

Co-authored-by: Fortune Ndlovu <fndlovu@redhat.com>

* Squashed 'charts/backstage/vendor/backstage/' changes from 312d0b1..2c46b09

2c46b09 chore(deps): bump sigstore/cosign-installer from 4.0.0 to 4.1.0 (#319)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: 2c46b094ed412043d645ec45fc02e496d1f9e23e

---------

Co-authored-by: Fortune Ndlovu <fndlovu@redhat.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants