fahed dorgaa
fahed dorgaa
@robberphex It looks like it is not showing correctly the default value ``` -l, --leaderElection Use leader election for the conroller manager. (default ) [$LEADER_ELECTION] ``` Extract from my source...
@robberphex do you plan to move forward on this?
thanks @AkihiroSuda
traffic should be translated by a dnat rule and then routed to the bridge and then container socket as @Shubhranshu153 mentioned the output of these two commands will be very...
The simple use case to confirm that forwarding socket is not enough is mouting containerd socket in a container. https://github.com/containerd/containerd/pull/5876 seems to be the solution so far May be we...
`./containerd-rootless-setuptool.sh install` => containerd setup [Needs to be executed as a non-root user](https://github.com/containerd/nerdctl/blob/main/extras/rootless/containerd-rootless-setuptool.sh#L24-L25)
Hi @apostasie, the scheme is not ignored during `nerdctl login`, there is a fallback from `https` to `http` in specific justified [situations](https://github.com/containerd/nerdctl/blob/main/pkg/cmd/login/login.go#L189) where we can add a warning message to...
> @fahedouch any user specified scheme in the url is just ignored entirely. > > Try for example: `nerdctl login http://index.docker.io` > > The fact that we fallback from https...
> Found the issue, need to use regex to filter out instead of equality operator. Could you please open a PR with the fix. Thanks