actions-runner-controller: Multiple Runner Sizes And Organizations #161772
-
Why are you starting this discussion?Question What GitHub Actions topic or product is this about?ARC (Actions Runner Controller) Discussion DetailsWhat are my options for configuring multiple runner sizes (e.g. Do I understand correctly that:
In our use case, on top of the different runner sizes, we would like to register runners for multiple GitHub organizations. Does that mean we would need Thanks for your time! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi @SimeonStoykovQC, Great question — managing multiple runner sizes and GitHub organizations in ARC can definitely get complex, so let's clarify a few things: ✅ Runner Sizes via Multiple Scale SetsYes, you understand correctly:
Example: resources:
requests:
cpu: "0.5"
memory: "1Gi"
limits:
cpu: "0.5"
memory: "1Gi" 🧩 Multiple GitHub OrganizationsAs for multiple GitHub organizations, here's the key:
🚀 Recommendations
ℹ️ Helpful ResourcesBest regards. 🎉 |
Beta Was this translation helpful? Give feedback.
Hi @SimeonStoykovQC,
Great question — managing multiple runner sizes and GitHub organizations in ARC can definitely get complex, so let's clarify a few things:
✅ Runner Sizes via Multiple Scale Sets
Yes, you understand correctly:
gha-runner-scale-set
Helm chart installation or by deploying multiple RunnerScaleSet custom resources in the same cluster.resources
field in thespec.template.spec.containers.resources
section.Example:
🧩 …