What am I doing wrong with adding new runners? #3264
Replies: 1 comment
-
I figured out that my issue was the helm command I was using to update: helm upgrade --install test-runner-set --namespace arc-runners --create-namespace -f values.yaml oci://ghcr.io/actions/actions-runner-controller-charts/gha-runner-scale-set needs a version option so that the chart version matches the controller version. It was grabbing charts for 0.8.2 with no option instead of 0.6.1 that is my present controller version. To fix, I add version as follows: helm upgrade --install test-runner-set --namespace arc-runners --create-namespace -f values.yaml oci://ghcr.io/actions/actions-runner-controller-charts/gha-runner-scale-set --version "0.6.1" |
Beta Was this translation helpful? Give feedback.
-
Morning,
It seems like every time I try and add new runners, the new listener just does not come up. I have ended up killing all the runner sets and the controller and restarting the controller and then the runner sets. Why am I having to do this to get the controller to recognize a change has happened and start everything? Is there another way? Is there a better way? Can I just restart just the controller, or will that zombie the runners? Note that the controller version I am using is 0.6.1. I am going to try 0.8.2, but to be honest I am worried very time that the stuff will not come up and I will have hundreds of angry developers.
David
Beta Was this translation helpful? Give feedback.
All reactions