Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
5a1386c
feat: add standalone RHDH Helm chart without upstream subchart depend…
rm3l Jun 17, 2026
2390d6b
deprecate backstage chart in favor of the new standalone rhdh chart
rm3l Jun 17, 2026
2166c42
run pre-commit hooks
rm3l Jun 17, 2026
0535a5f
Merge remote-tracking branch 'upstream/main' into RHDHPLAN-1058--impr…
rm3l Jun 17, 2026
6863fd4
clarify that backstage chart fixes target supported release-1.y branches
rm3l Jun 17, 2026
47ed937
update Chart.yaml with data from downstream chart
rm3l Jun 17, 2026
c45edb5
add CI values files for the rhdh chart
rm3l Jun 17, 2026
8cd6fb2
bump backstage chart version
rm3l Jun 17, 2026
62a2c40
fix issues reported by SonarQube
rm3l Jun 17, 2026
4f67c4d
support bitnami global fields in the rhdh chart
rm3l Jun 17, 2026
5569028
run pre-commit hooks
rm3l Jun 17, 2026
0c16624
upgrade bitnami postgresql dependency to 18.7.5
rm3l Jun 17, 2026
56e07d8
add digest field to all image blocks and document catalogIndex examples
rm3l Jun 17, 2026
c1b1d90
Merge branch 'main' into RHDHPLAN-1058--improve-helm-chart-configurat…
rm3l Jun 18, 2026
2b0e840
Merge remote-tracking branch 'upstream/main' into RHDHPLAN-1058--impr…
rm3l Jun 18, 2026
76ba3c5
fix(ci): skip ct upgrade test for new charts not yet on the target br…
rm3l Jun 18, 2026
b9e0e1e
fix(ci): set podSecurityContext for the rhdh chart on KinD
rm3l Jun 18, 2026
0ca7e13
feat(rhdh): add default appConfig with base URLs, database, and auth
rm3l Jun 18, 2026
4d8fbba
Merge branch 'main' into RHDHPLAN-1058--improve-helm-chart-configurat…
rm3l Jun 19, 2026
3179076
run pre-commit hooks
rm3l Jun 19, 2026
98d8b82
merge: resolve conflicts with upstream/main
rm3l Jul 7, 2026
dcfdec2
chore(rhdh): replace disabled with enabled in dynamic plugin configs …
rm3l Jul 7, 2026
0a5e8f0
run pre-commit hooks
rm3l Jul 7, 2026
c1b6004
fix(rhdh): fix lightspeed RAG init permissions and bump lightspeed-st…
rm3l Jul 7, 2026
13f8be5
fix(ci): drop runAsUser/runAsGroup overrides for rhdh chart on KinD
rm3l Jul 7, 2026
ffbb2dd
refactor(rhdh): move CI-only overrides from values files to test action
rm3l Jul 7, 2026
24800b6
chore(rhdh): apply Helm best practices to values.yaml
rm3l Jul 7, 2026
f720e9a
chore(rhdh): remove diagnosticMode from values and deployment template
rm3l Jul 8, 2026
c6c3028
chore(rhdh): downgrade postgresql subchart to 16.2.5
rm3l Jul 8, 2026
0c32767
refactor(rhdh): rename securityContext to containerSecurityContext
rm3l Jul 8, 2026
dd8ce84
refactor(rhdh): reuse containerSecurityContext for install-dynamic-pl…
rm3l Jul 8, 2026
c77cd4c
feat(rhdh): make dynamic-plugins-root volume configurable
rm3l Jul 8, 2026
e2d099f
refactor(rhdh): rename extra resource fields for clarity
rm3l Jul 8, 2026
18aa3c1
refactor(rhdh): rename env to extraEnv for consistency
rm3l Jul 8, 2026
2751cdb
feat(rhdh): add extraArgs and make args a full override
rm3l Jul 8, 2026
44d270c
fix(rhdh): reorder --config args so extraAppConfig overrides appConfig
rm3l Jul 8, 2026
d906fe8
refactor(rhdh): rename args to argsOverride for clarity
rm3l Jul 8, 2026
b727f5d
feat(rhdh): add envOverride for full env control
rm3l Jul 8, 2026
18615ec
run pre-commit hooks
rm3l Jul 8, 2026
d2b7ec0
refactor(rhdh): group OpenShift fields under openshift parent
rm3l Jul 8, 2026
f3ace17
refactor(rhdh): reorganize values.yaml by functional category
rm3l Jul 9, 2026
50d7d6e
refactor(rhdh): centralize labels and remove hardcoded namespace
rm3l Jul 9, 2026
a11cf4b
fix(rhdh): fix annotation ordering in route and add commonAnnotations…
rm3l Jul 9, 2026
d17500e
fix(rhdh): lowercase and truncate DB creation Job name
rm3l Jul 9, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 26 additions & 7 deletions .github/actions/test-charts/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,18 +52,18 @@ runs:
run: |
if [[ -n "$INPUT_CHART" ]]; then
echo "changed=true" >> "$GITHUB_OUTPUT"
if [[ "$INPUT_CHART" == "charts/backstage" ]]; then
echo "backstageChartChanged=true" >> "$GITHUB_OUTPUT"
if [[ "$INPUT_CHART" == "charts/backstage" || "$INPUT_CHART" == "charts/rhdh" ]]; then
echo "orchestratorCrdsNeeded=true" >> "$GITHUB_OUTPUT"
fi
elif [[ "$INPUT_ALL_CHARTS" == "true" ]]; then
echo "changed=true" >> "$GITHUB_OUTPUT"
echo "backstageChartChanged=true" >> "$GITHUB_OUTPUT"
echo "orchestratorCrdsNeeded=true" >> "$GITHUB_OUTPUT"
else
listChanged=$(ct list-changed --target-branch "$INPUT_TARGET_BRANCH")
if [[ -n "$listChanged" ]]; then
echo "changed=true" >> "$GITHUB_OUTPUT"
if grep 'charts/backstage' <<< "$listChanged"; then
echo "backstageChartChanged=true" >> "$GITHUB_OUTPUT"
if grep -E 'charts/backstage|charts/rhdh' <<< "$listChanged"; then
echo "orchestratorCrdsNeeded=true" >> "$GITHUB_OUTPUT"
fi
fi
fi
Expand Down Expand Up @@ -158,7 +158,7 @@ runs:
# For the simple testing that we are doing here on a vanilla K8s cluster, we only need both the Knative and SonataFlow CRDs.
# TODO(rm3l): Update this when/if there is an upstream counterpart installable via OLM.
- name: Install Knative and SonataFlow CRDs
if: steps.list-changed.outputs.backstageChartChanged == 'true'
if: steps.list-changed.outputs.orchestratorCrdsNeeded == 'true'
shell: bash
env:
SONATAFLOW_OPERATOR_VERSION: "10.1.0"
Expand Down Expand Up @@ -201,6 +201,15 @@ runs:
"--set global.host=rhdh.127.0.0.1.sslip.io"
"--set upstream.backstage.podSecurityContext.fsGroup=1001"
)
elif [[ "$INPUT_CHART" == "charts/rhdh" ]]; then
# On vanilla K8s (KinD), there is no SCC to assign a common UID.
# Set fsGroup so shared volumes (e.g. RAG data) are group-writable
# across init containers and sidecars that may run as different UIDs.
EXTRA_ARGS+=(
"--set openshift.route.enabled=false"
"--set postgresql.primary.persistence.enabled=false"
"--set podSecurityContext.fsGroup=1001"
)
fi
if [[ -n "$INPUT_EXTRA_HELM_ARGS" ]]; then
IFS=' ' read -ra ADDITIONAL_ARGS <<< "$INPUT_EXTRA_HELM_ARGS"
Expand All @@ -209,10 +218,20 @@ runs:
CT_ARGS=(
--debug
--config ct-install.yaml
--upgrade
--target-branch "$INPUT_TARGET_BRANCH"
--helm-extra-set-args="${EXTRA_ARGS[*]}"
)
# Only test upgrades from the previous revision if the chart exists on the target branch.
# New charts (not yet on the target branch) would fail dependency build on the previous revision.
if [[ -n "$INPUT_CHART" ]]; then
if git show "origin/$INPUT_TARGET_BRANCH:${INPUT_CHART}/Chart.yaml" &>/dev/null; then
CT_ARGS+=(--upgrade)
else
echo "Chart $INPUT_CHART is new (not on $INPUT_TARGET_BRANCH); skipping upgrade test."
fi
else
CT_ARGS+=(--upgrade)
fi
if [[ -n "$INPUT_CHART" ]]; then
CT_ARGS+=(--charts "$INPUT_CHART")
elif [[ "$INPUT_ALL_CHARTS" == "true" ]]; then
Expand Down
105 changes: 0 additions & 105 deletions .github/workflows/sync-upstream-backstage.yaml

This file was deleted.

2 changes: 1 addition & 1 deletion charts/backstage/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,4 @@ sources: []
# Versions are expected to follow Semantic Versioning (https://semver.org/)
# Note that when this chart is published to https://github.com/openshift-helm-charts/charts
# it will follow the RHDH versioning 1.y.z
version: 6.2.0
version: 6.2.1
6 changes: 4 additions & 2 deletions charts/backstage/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

# RHDH Backstage Helm Chart for OpenShift

![Version: 6.2.0](https://img.shields.io/badge/Version-6.2.0-informational?style=flat-square)
![Version: 6.2.1](https://img.shields.io/badge/Version-6.2.1-informational?style=flat-square)
![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)

A Helm chart for deploying Red Hat Developer Hub, which is a Red Hat supported version of Backstage.
Expand All @@ -10,6 +10,8 @@ The telemetry data collection feature is enabled by default. Red Hat Developer H

**Homepage:** <https://red.ht/rhdh>

> **DEPRECATED:** Starting with RHDH 2.y, this chart is deprecated in favor of the new [`redhat-developer-hub`](../rhdh/) chart, which owns all Kubernetes templates directly and no longer depends on the upstream Backstage subchart. See the [upgrade guide](../rhdh/README.md#upgrading-from-the-backstage-chart-rhdh-1y) for migration instructions. This chart will continue to receive critical fixes on the supported `release-1.y` branches but no new features.

## Productized RHDH

This repository now provides the productized RHDH chart.
Expand All @@ -29,7 +31,7 @@ For the **Generally Available** version of this chart, see:
helm repo add bitnami https://charts.bitnami.com/bitnami
helm repo add redhat-developer https://redhat-developer.github.io/rhdh-chart

helm install my-backstage redhat-developer/backstage --version 6.2.0
helm install my-backstage redhat-developer/backstage --version 6.2.1
```

## Introduction
Expand Down
4 changes: 3 additions & 1 deletion charts/backstage/README.md.gotmpl
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@

{{ template "chart.homepageLine" . }}

## Productized RHDH
> **DEPRECATED:** Starting with RHDH 2.y, this chart is deprecated in favor of the new [`redhat-developer-hub`](../rhdh/) chart, which owns all Kubernetes templates directly and no longer depends on the upstream Backstage subchart. See the [upgrade guide](../rhdh/README.md#upgrading-from-the-backstage-chart-rhdh-1y) for migration instructions. This chart will continue to receive critical fixes on the supported `release-1.y` branches but no new features.

## Productized RHDH

This repository now provides the productized RHDH chart.
For the **Generally Available** version of this chart, see:
Expand Down
23 changes: 23 additions & 0 deletions charts/rhdh/.helmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Patterns to ignore when building packages.
# This supports shell glob matching, relative path matching, and
# negation (prefixed with !). Only one pattern per line.
.DS_Store
# Common VCS dirs
.git/
.gitignore
.bzr/
.bzrignore
.hg/
.hgignore
.svn/
# Common backup files
*.swp
*.bak
*.tmp
*.orig
*~
# Various IDEs
.project
.idea/
*.tmproj
.vscode/
9 changes: 9 additions & 0 deletions charts/rhdh/Chart.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
dependencies:
- name: common
repository: https://charts.bitnami.com/bitnami
version: 2.40.0
- name: postgresql
repository: oci://registry-1.docker.io/bitnamicharts
version: 16.2.5
digest: sha256:764976da7d48aab14580f3c0a8124d0e3eaa81697efeff7f967af1109e885fe6
generated: "2026-07-08T09:35:41.702344094+02:00"
Loading
Loading