Results 226 comments of Florian Klink

Indeed - a `kubectl explain vmauth.spec.ingress` does list that endpoint. Could we switch to something like https://github.com/ahmetb/gen-crd-api-reference-docs instead? It's being used to render the cert-manager and knative API reference docs,...

This was more related to the `format` parameter that `logging.basic_config(format=…)` exposes, but `click_log.basic_config()` currently doesn't. In my usecase I'd like to keep the coloring depending on log level as prefix,...

@untitaker I had a look into it. We already subclass `logging.Formatter`, to which we could pass a custom `format` parameter, and simply use `super().format(record)` and `click.style` inside of our `format(self,...

So, to make sure I understand this - `local-path-provisioner` should switch from hostpath pv to local pv, and then we'd get all these metrics out of the box?

@brandond What's the state of this? Is there anything in local-path-provisioner taking care of chmods, or is it all configuration of the provisioner, such as done in k3s: https://github.com/k3s-io/k3s/commit/e6247d583c432381b5d8439ca2873fff404f86e2?

I just ran into this while trying to add `structlog` to a poetry2nix-packaged environment.

I read some code a bit, and added some traces. It seems in general, there's all tooling in place to parse `build-system.build-backend`, and to add these dependencies. However, it seems...

I'm able to workaround this by manually bringing in a flit-core, via the `overrides` mechanism: ```nix poetry2nix.mkPoetryApplication { projectDir = ./.; python = python310; overrides = poetry2nix.overrides.withDefaults (self: super: {...

Yeah, but the tooling should be there to just derive this from `pyproject.toml`. @GuillaumeDesforges do you want to rename this issue to reflect this?

Huuh. Can we link to the upstream issue somewhere in the poetry2nix docs, and provide some guidance on how we seem to be using the overrides mechanism to manually keep...