ARC runner scale-set unable to start pod for Enterprise runner groups #146608
Replies: 1 comment 1 reply
-
Hi, It seems like you're on the right track with the configuration, but there are a couple of things to double-check.
Try adjusting your workflow file like this: on:
workflow_dispatch:
jobs:
Explore-GitHub-Actions:
runs-on:
- group: "enterprise/my-enterprise"
- labels: ["arc-runner-set"] # It's an array format
steps:
- run: echo "🎉 This job uses runner Also, check the following:
If after this, the issue still persists, reviewing the logs from both GitHub Actions and the Kubernetes namespace can help identify where the issue lies. |
Beta Was this translation helpful? Give feedback.
-
Select Topic Area
Bug
Body
Hi all,
We are trying to execute the github runners agent in GKE cluster therefore we have created the runner-scale-set on enterprise level. When we register the agent using enterprise url then we are able to set the runner-group with name test but when the pipeline starts then the pipeline looks for the agent and stays in queue; moreover; scale-set no pod started in GKE namespace.
We followed this url to configure the agent.
https://docs.github.com/en/actions/hosting-your-own-runners/managing-self-hosted-runners-with-actions-runner-controller/quickstart-for-actions-runner-controller
The below is my workflow file format to calling the enterprise runner-group.
Are we doing any wrong while calling the runner-group in workflow.
Beta Was this translation helpful? Give feedback.
All reactions