ARC not scaling up and respecting the conditions of HRA #2969
-
Problem: I have an EKS cluster where I have an ARC deployed, and it generally is working. A couple runnerdeployments are managed under it, and jobs get assigned to the pods without issue.
The logs of the ARC are showing that the maximum is seen and all the runners are in fact busy, but it's not scaling up and instead just continuing to just set the desired replicas to the same number it has been.
Actions runner controller image: summerwind/actions-runner-controller:v0.26.0 What am I missing here? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
For anyone who stumbles upon this later, the issue was these lines:
these are multipliers, not quantifiers. I thought this was specifying how many pods to add/subtract. My current number of replicas were being multiplied by 1, and thus not moving. |
Beta Was this translation helpful? Give feedback.
For anyone who stumbles upon this later, the issue was these lines:
these are multipliers, not quantifiers. I thought this was specifying how many pods to add/subtract. My current number of replicas were being multiplied by 1, and thus not moving.