Results 133 comments of Jasper

I believe this is related to https://www.mail-archive.com/[email protected]/msg1802783.html A workaround could be for `libgit2-sys` to build `libgit2` with `-mno-outline-atomics` on `aarch64-unknown-linux-musl`, although it seems like this should be resolved in musl...

I can confirm that `CFLAGS=-mno-outline-atomics` solves the linker errors.

@tami5 I just set the environment variable as indicated – if it doesn't work similarly for you, you might have a slightly different issue.

I just hit this same issue — I wrote a config file from scratch based on the documentation, and was surprised to find that "the default value for this setting...

It would be great to be able to produce somewhat arbitrary PKCS12 bundles, rather than being limited to getting a PKCS12 bundle containing a single certificate chain and/or private key....

If there were updates, you'd see them in this ticket. If you're going to ping 30+ random people, at least have something to add… 🙄

> It all comes down to the behaviour one would like. For instance: > > ``` > kubectl create ns foo > kubectl create ns foo # > kubectl apply...

> We provision the GKE cluster in the root module and deploy our app using a child module. We'd like to use the exact same module for all pre-production environments....

`webhooks` in `ValidatingWebhookConfiguration` is a list, not a map, so neither of those field specs will match. You have to index lists with a number (eg `[0]`). That does make...

That error message is passed through from the k8s API server, which knows to call out the element by its `name` field because of the patch strategy for the list...