You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have encountered an issue when actions suddenly stop working. The problem happens occasionally and identifying the root cause is a bit challenging. Actions runner controller is running in the K3S cluster behind the proxy and is connected to the Enterprise server. The server has an access to the github.com through GitHub Connect.
Error:
RunnerDeployment:
apiVersion: actions.summerwind.dev/v1alpha1
kind: RunnerDeployment
metadata:
name: github-actions-runners-test
namespace: github-actions-runners-test
spec:
template:
spec:
organization: org
env:
- name: http_proxy
value: "http://proxy:80"
- name: https_proxy
value: "http://proxy:80"
- name: no_proxy
value: ".localhost,127.0.0.1,.host.com,github.host.com,app1.host.com"
- name: GIT_SSL_CAINFO
value: /etc/ssl/certs/ca-certificates.crt
labels:
- x-test
- test
group: Default
containers:
- name: docker
image: <docker-image>
- name: runner
image: <base runner image + additional software, like: curl, wget, jq, etc. >
---
apiVersion: actions.summerwind.dev/v1alpha1
kind: HorizontalRunnerAutoscaler
metadata:
name: github-actions-runners-test-autoscaler
namespace: github-actions-runners-test
spec:
# Runners in the targeted RunnerDeployment won't be scaled down
# for 5 minutes instead of the default 10 minutes now
scaleDownDelaySecondsAfterScaleOut: 300
scaleTargetRef:
kind: RunnerDeployment
# # In case the scale target is RunnerSet:
# kind: RunnerSet
name: github-actions-runners-test
minReplicas: 6
maxReplicas: 16
metrics:
- type: PercentageRunnersBusy
scaleUpThreshold: '0.75'
scaleDownThreshold: '0.25'
scaleUpFactor: '2'
scaleDownFactor: '0.5'
Maybe someone faced the same issue and could recommend some workarounds?
Hope, someone could help or at least point to the right way :)
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi community,
I have encountered an issue when actions suddenly stop working. The problem happens occasionally and identifying the root cause is a bit challenging. Actions runner controller is running in the K3S cluster behind the proxy and is connected to the Enterprise server. The server has an access to the github.com through GitHub Connect.
Error:

RunnerDeployment:
Maybe someone faced the same issue and could recommend some workarounds?
Hope, someone could help or at least point to the right way :)
Thanks in advance,
Beta Was this translation helpful? Give feedback.
All reactions