Devon Hakel-Kinko
Devon Hakel-Kinko
I think you would have to build a custom dind image that modifies this [line](https://github.com/actions/actions-runner-controller/blob/master/runner/entrypoint-dind.sh#L45) to set the `HTTPS_PROXY` / `HTTP_PROXY` env variables. **EDIT** > Tried with a custom entrypoint...
In the short term, you may want to remove the `Docker` section from the readme since it's currently unsupported. https://github.com/minetest/minetest#docker My 2cents for a longer term solution is to update...
All tests are passing except 2 e2e controller tests. I'm having difficulty troubleshooting these failures: ``` 395: [FAIL] SecretStore reconcile Controller Reconcile logic [It] [namespace] invalid provider with secretStore should...
> seems to me that the tests are passing. Which one did you encounter trouble with, or how did you run it? Using `make tests`, these 2 failed, but since...
> It looks like an invalid config really. Running the tests locally is super difficult. Don't worry about them. I appreciate the help :+1: . I'll check the `All tests...
> The helm chart accepts a parameter "minRunners" you can set to have warm runners available to service jobs immediately. For my architecture, setting it to 1 for a small...
~We just started hitting this issue today as well.~ **EDIT**: My error is related to API calls to the workers route API failing. Code deployments are unaffected, so these might...
I'm working on a restic backup orchestrator and also ran into this problem. This [PR](https://github.com/restic/restic/pull/5570/files) adds a configurable retry timeout. You can set it to a lower value when running...
Here's an example of a quick timeout on a rest backend (5 seconds). ```shell vagrant@testing:/vagrant$ RESTIC_REST_USERNAME=user RESTIC_REST_PASSWORD=password /vagrant/restic --retry-max-elapsed-time=5s -r rest:http://localhost:8000/6d521db2-3e72-4149-b2d0-65fee9810f80 cat config Stat() returned error, retrying after 849.484141ms: Head...
Simply reducing the amount of time spent retrying solves the problem for me :man_shrugging:. Anyway, I updated the description to point to a new issue.