Cory Snider
Cory Snider
I like how things are turning out, too. JSON on the command line is not terribly ergonomic to write and needs quoting/escaping, but then again so does the use of...
Lint errors: ``` opts/opts.go:186:5: S1003: should use !strings.Contains(value, "=") instead (gosimple) if strings.Index(value, "=") == -1 { ^ opts/opts.go:190:5: S1003: should use !strings.Contains(rv, "=") instead (gosimple) if strings.Index(rv, "=") ==...
We could not come to a consensus on the wildcard defaults feature, including whether it is even desired. Aside from that the maintainers are happy with the design. Remove that...
> @corhere Are we still looking to bring this in for v-next? I certainly would like to. Let's discuss it at the next maintainer call.
@swagatbora90 no, I am not working on this PR. You are welcome to take it over.
[The version of Docker in `ubuntu-latest` GHA image was first upgraded to v20.10.21 on 2022-11-24](https://github.com/actions/runner-images/commit/d54fa255120bfd0f508c1feb53490190787b1316), nearly four weeks ago. Docker v20.10.21 was released on 2021-10-25, and first incorporated into Docker...
> Are you sure that the bpf match is supported by `iptables-nft`, it is still in the [list](https://wiki.nftables.org/wiki-nftables/index.php/Supported_features_compared_to_xtables#bpf) of "unsupported extensions"? [`iptables-nft` supports all `xtables` extensions because it uses the...
I'm more confused than when I started looking. I do not understand how execs are killed when the init process exits. Execs are weird beasts; they have a parent PID...
I would still like to understand the control flow of how the container's init process exiting gets resolved to the reaper publishing a stream of exec exits followed by the...
I don't think the issue is with the reaper, either. The reaper is just `wait4()`ing child processes which have already exited. I've solved the mystery of how execs get killed:...