ChristopherHX

Results 976 comments of ChristopherHX

> However given what you said about DinD still being a requirement I don't think it will change much I meant, I didn't create any k8s mode examples / actually...

k8shooks works for me using these files on minikube (arm64) [actions-runner-k8s-gitea-sample-files.zip](https://github.com/go-gitea/gitea/files/14497894/actions-runner-k8s-gitea-sample-files.zip) - Missing usage of secrets, need to learn kubernetes - No autoscaling - No persistence of runner credentials With...

I didn't got this this kind of error before (at least for a year) > Receiving message of length 6322, with hash '30564f1b4d3e28c3d9cc39d17eca1132cc026a2abeb6ab1be6736d80cf019ea9' [WORKER 2024-03-12 15:59:08Z INFO Worker] Message received....

@omniproc you made changes via the deployment file that are not compatible with actions/runner k8s container hooks and I have no idea if using a deployment is possible. Actions-Runner-Controller might...

Thanks for your example, it makes manual scaling pretty straightforward and works in minikube for testing purposes even with 4 replicas. The first time I read your response I thought...

I didn't go myself through the limitations of actions/runner proxy support https://github.com/actions/runner/blob/41bc0da6fe09466d23fd37d691feeb68dd3b4338/docs/adrs/0263-proxy-support.md?plain=1#L51 They seem to ignore ip exclusions > We will not support IP addresses for `no_proxy`, only hostnames. https://github.com/actions/runner/blob/41bc0da6fe09466d23fd37d691feeb68dd3b4338/src/Runner.Sdk/RunnerWebProxy.cs#L171...

> Why not use `localhost`? I can send a single hostname/ip + port to the actions/runner If I send localhost - artifacts are broken - cache is broken Those are...

> Can you point me to where this is done? Can this be configured? Here I set the connection address, but there is some url entries, maybe one of them...

> So, what do you think about making the IP configurable via an environment variable? `GITEA_CACHE_HOST ` or something similar? Yes I agree mostly about this. However I wouldn't put...

@omniproc Proxy should now work in tag v0.0.13 Use the following env ```yaml - name: GITEA_ACTIONS_RUNNER_RUNTIME_USE_DNS_NAME value: '1' - name: GITEA_ACTIONS_RUNNER_RUNTIME_APPEND_NO_PROXY # this appends the dns name of the pod...