How do I depend on the gha-runner-scale-set-controller chart from another chart? #3263
-
I want to write my own helm chart that depends on the new runner-scale-set-controller chart. But I don't know what to provide for the apiVersion: v2
name: runner-scale-set-controller
description: Helm chart for deploying a runner scale set controller
type: application
version: 0.1.0
appVersion: "1.16.0"
dependencies:
- name: gha-runner-scale-set-controller
version: "0.8.2"
repository: https://what_goes_here.com? I don't see anything about this in the docs. It seems related to another open question #3072. |
Beta Was this translation helpful? Give feedback.
Answered by
alexklibisz
Feb 4, 2024
Replies: 1 comment
-
This ended up working: apiVersion: v2
name: runner-scale-set-controller
description: Helm chart for deploying a runner scale set controller
type: application
version: 0.1.0
appVersion: "1.16.0"
dependencies:
- name: gha-runner-scale-set-controller
version: "0.8.2"
repository: oci://ghcr.io/actions/actions-runner-controller-charts AND I had to make sure I'm on helm version 3.8.0. OCI support is relatively-newly supported: https://helm.sh/docs/topics/registries/ |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
alexklibisz
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This ended up working:
AND I had to make sure I'm on helm version 3.8.0. OCI support is relatively-newly supported: https://helm.sh/docs/topics/registries/