Eirik A

Results 300 comments of Eirik A

It does _appear_ to be a common consensus that switching allocators is a good idea performance-wise on musl. I cannot confirm this yet, but it seems promising from articles. The...

This would be a great ergonomic improvement in general to have. My bet here would be on some extra key/info in the schema that can serves as some kind of...

Potential brute-force solution, given the lack of standard signalling: https://github.com/kube-rs/kopium/issues/298

Are we talking about the constants you are defining in [constants.rs](https://github.com/kube-rs/gateway-api-rs/blob/main/gateway-api/src/apis/experimental/constants.rs). I don't see them [in client-go](https://github.com/search?q=repo%3Akubernetes%2Fclient-go+Programmed&type=code). If there are generic names that exists somewhere that have established meanings we...

Although, if you are re-using the schema of `Condition`, in which the [condition strings are untyped](https://docs.rs/k8s-openapi/latest/k8s_openapi/apimachinery/pkg/apis/meta/v1/struct.Condition.html), I guess you would always lose type information (if there's probably no good ways...

Appreciate all the context! Yeah, I agree better language support would be the best in the end, but it indeed sound difficult. Like in this case, it's almost like Kubernetes...

Is there an upstream issue for this? Had a bit of a look, and nothing matching AFAIKT. But I did see people saying they could inject serde annotations to certain...

Looking at this again. We can indeed mass replace known broken names at the end. I did this for the type names in https://github.com/kube-rs/k8s-pb/pull/49 for alignment with type names in...

Presumably to get an `enum` rather than a `struct`? We don't actually have any enums in the `out` directory at all. The [generated k8s-openapi one](https://docs.rs/k8s-openapi/0.13.1/src/k8s_openapi/v1_22/apimachinery/pkg/util/intstr/int_or_string.rs.html#5-8) is marked as having [alternative...

A potential benefit here is that this could move us towards having a simpler dependency flow into `kube` as well (with a few exceptions) - `kube-client` would only need what...