ARC "gha-runner-scale-set" Helm install failed in CI
The Helm install of the gha-runner-scale-set chart failed before creating the AutoscalingRunnerSet. The values are invalid, a release name clashes, or a referenced secret does not exist.
What this error means
helm install or upgrade returns "INSTALLATION FAILED" with a message about invalid values, an existing release, or a missing referenced resource.
Error: INSTALLATION FAILED: cannot re-use a name that is still in useCommon causes
A release name clash
A prior release with the same name still exists, so a fresh install is refused until it is upgraded or removed.
Invalid values or a missing referenced secret
A malformed values file, or a githubConfigSecret name that does not exist, aborts the template render or install.
How to fix it
Upgrade the existing release or use a new name
- List releases to see the clashing name.
- Run helm upgrade on the existing release, or install under a new name.
- Confirm the values and referenced secrets exist first.
helm list -A
helm upgrade arc-runner-set \
oci://ghcr.io/actions/actions-runner-controller-charts/gha-runner-scale-set \
-n arc-runners -f values.yamlValidate values before installing
Render the chart with your values to catch errors before applying to the cluster.
helm template arc-runner-set \
oci://ghcr.io/actions/actions-runner-controller-charts/gha-runner-scale-set \
-f values.yamlHow to prevent it
- Render with helm template in CI before install.
- Use distinct release names per scale set and namespace.
- Create githubConfigSecret before referencing it in values.