Norman

Results 82 comments of Norman

The `webhook-server-cert-letsencrypt` does not get created either by cert-manager, nor the redis-operator. I think, I don't completely understand who is responsible for what part here. Maybe having a flow diagram...

Interesting find. Thank you for investigating. The issue you linked seems to be only related to the rate limit of a single provider. We hit it with any provider. I...

Thanks for the example. With this setup I can reproduce too. So should we raise a new issue in opentofu?

Is there a roadmap for when this will get merged? Would greatly appreciate it.

also covered here: https://github.com/actions/actions-runner-controller/pull/3645. no reaction from the maintainers for months...

@duchuyvp , do you happen to run the deployment on GKE?

Try setting MTU for the docker daemon like: ```yaml - name: dind image: docker:dind args: - dockerd - --host=unix:///var/run/docker.sock - --group=$(DOCKER_GROUP_GID) - --mtu=1460 ``` The default docker daemon MTU is...

I ended up using the solution with a configMap as described in the discussion [here](https://github.com/actions/actions-runner-controller/discussions/2993#discussioncomment-8071798). You have to set ```yaml containerMode: type: none ``` and then completely specify the template...

I ended up using the solution discussed [here](https://github.com/actions/actions-runner-controller/discussions/2993#discussioncomment-8071798), writing a `deamon.json` configMap and mounting it inside the container to ` /etc/docker/daemon.json`. This allow for setting ```json "bridge": { "com.docker.network.driver.mtu": "1460"...

Maybe these two options (container args and ConfigMap) should be added to the docs, considering how many reactions this issue got?