Replies: 1 comment
-
Does anyone else here uses |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
While using autoscaling via
TotalNumberOfQueuedAndInProgressWorkflowRuns
, I'm are getting duplicated runners spawned up (can see the workqueue_retries_total raising during this time, usingsum(rate(workqueue_retries_total{job="actions-runner-controller-metrics-service"}[$__interval])) by (name)
and some runners are duplicated, e.g. when is demand for 1 runner we are getting 2 runners spawned (HRA setting desired to 1), 1 picking up the job and the other idling -- this is a problem because the idle runner blocks resources that can be used by a different type of runner, which might stay in pending state because of it.this is my config for ARC
and this is my config for Deployment + HRA
using EKS 1.23, latest ARC chart + latest dependencies (actions-runner-controller-0.23.5 as of writing).
There seems to be a labeling mismatch, so that the idle runner can't be killed, e.g. this is an idle runner and the busy one doesn't show up in the logs
Did anyone else experienced this? Any debugging tips?
Beta Was this translation helpful? Give feedback.
All reactions