Results 79 comments of Ian Campbell

Booting using qemu in CI (so no KVM) hits a hardcoded 30min timeout in `kubeadm init`. In any case 30min is far far far too long (tha'ts on top of...

We have no MacOS workers in circle (seems it is a paid only feature) so the jobs just hang forever waiting to be assigned. It's been suggested we could try...

@rn is experimenting with the nested virt stuff on the main linuxkit repo now, will wait and see how he gets on. It might indeed be too much data to...

This is not something we've investigated yet, it would be derived from the `kubeadm` upgrade strategy I guess since we use `kubeadm` for setup and configuration. PRs (docs or more)...

I tripped over this today, it's because `_SkipGroup` and `_EndGroup` aren't actually defined (and hence are `nil`). Probably relates to the fact that https://developers.google.com/protocol-buffers/docs/encoding describes wire types 3 and 4...

Am I confused/missing something or can any `Dockerfile` not be made to behave as if `--squash` was used by simply appending two lines: ``` FROM scratch COPY --from=0 / /...

So given `LAYER 0 (base), LAYER 1, LAYER 2, ... LAYER N` then `--squash` will produce `LAYER 0 (base), LAYER 1toN` as opposed to producing only `LAYER 0toN`? I wasn't...

I subsequently realised that I'm also using [`async-trait`](https://crates.io/crates/async-trait) which is also unsupported for callbacks and so I needed to implement a wrapper type anyway which can deal with the `&str`...

FWIW I'd be ok with adjusting the trait to use `ToString` or `ToOwned` or whatever. But I agree that this is probably best thought of as a docs thing.

It's not some clever generic thing, it's literally a bespoke wrapper type with a `to_string` in it. So, My project has a trait `T` with a method `f(s: &str)`. For...