Skip to content

chore: handle charts that do not have a Chart.lock file when generating the values schema file - #327

Merged
rm3l merged 3 commits into
redhat-developer:mainfrom
rm3l:chore/generate_value_schema_json_from_tpl_even_if_chart_does_not_have_chart_lockfile
Mar 11, 2026
Merged

chore: handle charts that do not have a Chart.lock file when generating the values schema file#327
rm3l merged 3 commits into
redhat-developer:mainfrom
rm3l:chore/generate_value_schema_json_from_tpl_even_if_chart_does_not_have_chart_lockfile

Conversation

@rm3l

@rm3l rm3l commented Mar 11, 2026

Copy link
Copy Markdown
Member

Description of the change

values.schema.json generation was based solely on the presence of a Chart.lock file, which may not be the case for all the charts here.

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

How to test changes / Special notes to the reviewer

Run the pre-commit hooks.

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:

⏱️ Estimated effort to review: 2 🔵🔵⚪⚪⚪
🔒 No security concerns identified
⚡ Recommended focus areas for review

Template Escaping

The Jinja2 template is created with autoescape enabled while rendering a JSON template. Depending on the template contents, this can HTML-escape characters (e.g., quotes) and produce invalid JSON or unexpected schema output. Validate that generated values.schema.json is identical to the expected output for charts using string values containing special characters, and consider disabling autoescape or using a JSON-safe rendering approach.

with open(template_path, "r", encoding="utf-8") as f:
    my_schema_template = Template(f.read(), autoescape=True)

return json.loads(my_schema_template.render(my_chart_yaml))
Chart Discovery

Charts are discovered by rglob(Chart.yaml) and using the parent directory. This may unintentionally include nested/dependency charts or vendored charts if present in the repo, causing schema generation in unintended locations. Validate the expected set of chart directories and consider filtering (e.g., only under charts/) if necessary.

charts = [p.parent for p in Path(".").rglob(CHART_YAML)]
📄 References
  1. redhat-developer/rhdh-chart/charts/orchestrator-infra/chart_schema.yaml [1-33]
  2. redhat-developer/rhdh-chart/charts/backstage/chart_schema.yaml [1-33]
  3. redhat-developer/rhdh-chart/charts/orchestrator-infra/values.yaml [37-41]
  4. redhat-developer/rhdh-chart/charts/orchestrator-software-templates/values.yaml [1-12]
  5. redhat-developer/rhdh-chart/charts/orchestrator-software-templates-infra/ci/upstream-values.yaml [1-27]
  6. redhat-developer/rhdh-chart/charts/backstage/values.yaml [342-356]
  7. redhat-developer/rhdh-chart/charts/backstage/ci/with-test-pod-disabled-values.yaml [1-12]
  8. redhat-developer/rhdh-chart/charts/backstage/templates/tests/test-secret.yaml [1-3]

@rhdh-qodo-merge rhdh-qodo-merge Bot added the enhancement New feature or request label Mar 11, 2026
@rhdh-qodo-merge

Copy link
Copy Markdown

PR Type

Enhancement


Description

  • Changed schema generation to use Chart.yaml instead of Chart.lock file

  • Added graceful handling for charts without template files

  • Updated pre-commit hook to avoid passing multiple files unnecessarily

  • Bumped orchestrator-infra chart version and regenerated schema


File Walkthrough

Relevant files
Enhancement
jsonschema-dereference.py
Switch schema generation to use Chart.yaml                             

.pre-commit/jsonschema-dereference.py

  • Changed file detection from Chart.lock to Chart.yaml for chart
    discovery
  • Updated template_schema() function to accept Chart.yaml data instead
    of lock file
  • Added existence check for template file with informative logging when
    missing
  • Returns None when template file doesn't exist to skip schema
    generation
+18/-8   
Configuration changes
.pre-commit-config.yaml
Disable filename passing for jsonschema hook                         

.pre-commit-config.yaml

  • Added pass_filenames: false flag to jsonschema-dereference hook
  • Prevents passing individual files to script that already parses all
    charts
+1/-0     
Chart.yaml
Bump orchestrator-infra chart version                                       

charts/orchestrator-infra/Chart.yaml

  • Bumped version from 0.5.1 to 0.5.2
+1/-1     
Documentation
README.md
Update documentation with new chart version                           

charts/orchestrator-infra/README.md

  • Updated version badge from 0.5.1 to 0.5.2
  • Updated helm install command example with new version
+2/-2     
Miscellaneous
values.schema.json
Regenerate and reformat values schema                                       

charts/orchestrator-infra/values.schema.json

  • Fixed $id URL from backstage to orchestrator-infra
  • Reformatted JSON with consistent 4-space indentation
  • Reorganized property definitions for better readability
+124/-122

@rhdh-qodo-merge

Copy link
Copy Markdown

PR Code Suggestions ✨

Explore these optional code suggestions:

CategorySuggestion                                                                                                                                    Impact
Possible issue
Avoid catching overly broad exceptions

Replace except BaseException with except Exception to avoid catching
system-level exceptions like KeyboardInterrupt.

.pre-commit/jsonschema-dereference.py [88-90]

-except BaseException as e:
+except Exception as e:
     print(f"Could not process schema for '{chart}': {e}")
     errors.append(e)

[To ensure code accuracy, apply this suggestion manually]

Suggestion importance[1-10]: 7

__

Why: The suggestion correctly points out that catching BaseException is bad practice and proposes the standard Exception class, which improves script robustness and predictability.

Medium
Skip when values.yaml missing

Add a check for the existence of values.yaml and skip processing the chart if
the file is not found to prevent errors.

.pre-commit/jsonschema-dereference.py [80]

-values = read_yaml(chart / VALUES_FILE)
+values_path = chart / VALUES_FILE
+if not values_path.exists():
+    print(f"INFO: '{values_path}' not found; skipping chart '{chart}'")
+    continue
+values = read_yaml(values_path)
  • Apply / Chat
Suggestion importance[1-10]: 6

__

Why: The suggestion correctly identifies a potential FileNotFoundError if values.yaml is missing and provides a reasonable fix to improve the script's robustness by skipping the chart.

Low
  • More

@rm3l
rm3l merged commit 38e1390 into redhat-developer:main Mar 11, 2026
5 of 6 checks passed
@rm3l
rm3l deleted the chore/generate_value_schema_json_from_tpl_even_if_chart_does_not_have_chart_lockfile branch March 11, 2026 16:41
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request Apr 26, 2026
…853164

2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: 2853164e6fa4b7eb87b0bea6ee507545e909e48c
github-actions Bot added a commit to OpinionatedHeron/rhdh-chart that referenced this pull request Apr 26, 2026
…853164

2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: 2853164e6fa4b7eb87b0bea6ee507545e909e48c
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request Apr 27, 2026
…853164

2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: 2853164e6fa4b7eb87b0bea6ee507545e909e48c
github-actions Bot added a commit to OpinionatedHeron/rhdh-chart that referenced this pull request Apr 27, 2026
…853164

2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: 2853164e6fa4b7eb87b0bea6ee507545e909e48c
openshift-merge-bot Bot pushed a commit that referenced this pull request Apr 27, 2026
* Squashed 'charts/backstage/vendor/backstage/' changes from b45464c..2853164

2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (#327)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: 2853164e6fa4b7eb87b0bea6ee507545e909e48c

* chore: apply RHDH-specific changes to vendored Backstage chart

* Bump backstage version to 5.8.1

Signed-off-by: RHDH Bot <146280956+rhdh-bot@users.noreply.github.com>

---------

Signed-off-by: RHDH Bot <146280956+rhdh-bot@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: RHDH Bot <146280956+rhdh-bot@users.noreply.github.com>
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request Apr 28, 2026
…853164

2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: 2853164e6fa4b7eb87b0bea6ee507545e909e48c
github-actions Bot added a commit to OpinionatedHeron/rhdh-chart that referenced this pull request Apr 28, 2026
…853164

2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: 2853164e6fa4b7eb87b0bea6ee507545e909e48c
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request Apr 29, 2026
…853164

2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: 2853164e6fa4b7eb87b0bea6ee507545e909e48c
github-actions Bot added a commit to OpinionatedHeron/rhdh-chart that referenced this pull request Apr 29, 2026
…853164

2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: 2853164e6fa4b7eb87b0bea6ee507545e909e48c
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request Apr 30, 2026
…853164

2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: 2853164e6fa4b7eb87b0bea6ee507545e909e48c
github-actions Bot added a commit to OpinionatedHeron/rhdh-chart that referenced this pull request Apr 30, 2026
…853164

2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: 2853164e6fa4b7eb87b0bea6ee507545e909e48c
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request May 1, 2026
…853164

2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: 2853164e6fa4b7eb87b0bea6ee507545e909e48c
github-actions Bot added a commit to OpinionatedHeron/rhdh-chart that referenced this pull request May 1, 2026
…853164

2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: 2853164e6fa4b7eb87b0bea6ee507545e909e48c
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request May 2, 2026
…853164

2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: 2853164e6fa4b7eb87b0bea6ee507545e909e48c
github-actions Bot added a commit to OpinionatedHeron/rhdh-chart that referenced this pull request May 2, 2026
…853164

2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: 2853164e6fa4b7eb87b0bea6ee507545e909e48c
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request May 3, 2026
…853164

2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: 2853164e6fa4b7eb87b0bea6ee507545e909e48c
github-actions Bot added a commit to OpinionatedHeron/rhdh-chart that referenced this pull request May 3, 2026
…853164

2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: 2853164e6fa4b7eb87b0bea6ee507545e909e48c
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request May 13, 2026
…82a9b7

a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: a82a9b796b2269e187170d9b8ce2a00b948e9fa7
github-actions Bot added a commit to OpinionatedHeron/rhdh-chart that referenced this pull request May 13, 2026
…82a9b7

a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: a82a9b796b2269e187170d9b8ce2a00b948e9fa7
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request May 14, 2026
…82a9b7

a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: a82a9b796b2269e187170d9b8ce2a00b948e9fa7
github-actions Bot added a commit to OpinionatedHeron/rhdh-chart that referenced this pull request May 14, 2026
…82a9b7

a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: a82a9b796b2269e187170d9b8ce2a00b948e9fa7
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request May 15, 2026
…82a9b7

a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: a82a9b796b2269e187170d9b8ce2a00b948e9fa7
github-actions Bot added a commit to OpinionatedHeron/rhdh-chart that referenced this pull request May 15, 2026
…82a9b7

a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: a82a9b796b2269e187170d9b8ce2a00b948e9fa7
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request May 16, 2026
…82a9b7

a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: a82a9b796b2269e187170d9b8ce2a00b948e9fa7
github-actions Bot added a commit to OpinionatedHeron/rhdh-chart that referenced this pull request May 16, 2026
…82a9b7

a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: a82a9b796b2269e187170d9b8ce2a00b948e9fa7
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request May 17, 2026
…82a9b7

a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: a82a9b796b2269e187170d9b8ce2a00b948e9fa7
github-actions Bot added a commit to OpinionatedHeron/rhdh-chart that referenced this pull request May 17, 2026
…82a9b7

a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: a82a9b796b2269e187170d9b8ce2a00b948e9fa7
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request May 18, 2026
…82a9b7

a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: a82a9b796b2269e187170d9b8ce2a00b948e9fa7
github-actions Bot added a commit to OpinionatedHeron/rhdh-chart that referenced this pull request May 18, 2026
…82a9b7

a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: a82a9b796b2269e187170d9b8ce2a00b948e9fa7
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request May 19, 2026
…82a9b7

a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: a82a9b796b2269e187170d9b8ce2a00b948e9fa7
github-actions Bot added a commit to OpinionatedHeron/rhdh-chart that referenced this pull request May 19, 2026
…82a9b7

a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: a82a9b796b2269e187170d9b8ce2a00b948e9fa7
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request May 20, 2026
…82a9b7

a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: a82a9b796b2269e187170d9b8ce2a00b948e9fa7
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request May 21, 2026
…82a9b7

a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: a82a9b796b2269e187170d9b8ce2a00b948e9fa7
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request May 22, 2026
…82a9b7

a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: a82a9b796b2269e187170d9b8ce2a00b948e9fa7
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request May 23, 2026
…82a9b7

a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: a82a9b796b2269e187170d9b8ce2a00b948e9fa7
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request May 24, 2026
…82a9b7

a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: a82a9b796b2269e187170d9b8ce2a00b948e9fa7
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request May 25, 2026
…82a9b7

a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: a82a9b796b2269e187170d9b8ce2a00b948e9fa7
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request May 27, 2026
…27fe5d

927fe5d feat: integrate gateway api endpoint for chart deployment (redhat-developer#329)
a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: 927fe5dd5713cd1cacaafa39cc0ddac6e2701816
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request May 28, 2026
…27fe5d

927fe5d feat: integrate gateway api endpoint for chart deployment (redhat-developer#329)
a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: 927fe5dd5713cd1cacaafa39cc0ddac6e2701816
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request May 29, 2026
…27fe5d

927fe5d feat: integrate gateway api endpoint for chart deployment (redhat-developer#329)
a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: 927fe5dd5713cd1cacaafa39cc0ddac6e2701816
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request May 30, 2026
…27fe5d

927fe5d feat: integrate gateway api endpoint for chart deployment (redhat-developer#329)
a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: 927fe5dd5713cd1cacaafa39cc0ddac6e2701816
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request May 31, 2026
…e985e8

8e985e8 chore(deps): bump actions/stale from 10.2.0 to 10.3.0 (redhat-developer#331)
60103f6 chore(deps): bump docker/login-action from 4.1.0 to 4.2.0 (redhat-developer#332)
927fe5d feat: integrate gateway api endpoint for chart deployment (redhat-developer#329)
a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: 8e985e8fc8b5388f4b5a86ee00dfa8305bfb3329
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request Jun 1, 2026
…e985e8

8e985e8 chore(deps): bump actions/stale from 10.2.0 to 10.3.0 (redhat-developer#331)
60103f6 chore(deps): bump docker/login-action from 4.1.0 to 4.2.0 (redhat-developer#332)
927fe5d feat: integrate gateway api endpoint for chart deployment (redhat-developer#329)
a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: 8e985e8fc8b5388f4b5a86ee00dfa8305bfb3329
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request Jun 3, 2026
…33ab0e

a33ab0e Fix loadBalancerSourceRanges rendering in service template (redhat-developer#333)
8e985e8 chore(deps): bump actions/stale from 10.2.0 to 10.3.0 (redhat-developer#331)
60103f6 chore(deps): bump docker/login-action from 4.1.0 to 4.2.0 (redhat-developer#332)
927fe5d feat: integrate gateway api endpoint for chart deployment (redhat-developer#329)
a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: a33ab0ee92e0bbc4f451780e37c5c351b8e4b7d7
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request Jun 4, 2026
…33ab0e

a33ab0e Fix loadBalancerSourceRanges rendering in service template (redhat-developer#333)
8e985e8 chore(deps): bump actions/stale from 10.2.0 to 10.3.0 (redhat-developer#331)
60103f6 chore(deps): bump docker/login-action from 4.1.0 to 4.2.0 (redhat-developer#332)
927fe5d feat: integrate gateway api endpoint for chart deployment (redhat-developer#329)
a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: a33ab0ee92e0bbc4f451780e37c5c351b8e4b7d7
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request Jun 5, 2026
…33ab0e

a33ab0e Fix loadBalancerSourceRanges rendering in service template (redhat-developer#333)
8e985e8 chore(deps): bump actions/stale from 10.2.0 to 10.3.0 (redhat-developer#331)
60103f6 chore(deps): bump docker/login-action from 4.1.0 to 4.2.0 (redhat-developer#332)
927fe5d feat: integrate gateway api endpoint for chart deployment (redhat-developer#329)
a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: a33ab0ee92e0bbc4f451780e37c5c351b8e4b7d7
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request Jun 6, 2026
…33ab0e

a33ab0e Fix loadBalancerSourceRanges rendering in service template (redhat-developer#333)
8e985e8 chore(deps): bump actions/stale from 10.2.0 to 10.3.0 (redhat-developer#331)
60103f6 chore(deps): bump docker/login-action from 4.1.0 to 4.2.0 (redhat-developer#332)
927fe5d feat: integrate gateway api endpoint for chart deployment (redhat-developer#329)
a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: a33ab0ee92e0bbc4f451780e37c5c351b8e4b7d7
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

enhancement New feature or request Review effort 2/5

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant