Eirik A

Results 300 comments of Eirik A

`kube` needs to depend on an explicit version of `k8s-openapi` (without features). Your `kube` version is 0.52 which pulls in `k8s-openapi` 0.11 (which you haven't selected versions for). You need...

looking more closely at your toml, you are actually pulling in kube components twice (at different versions): ```toml kube = { version = "~0.70", default-features = true, features = ["runtime",...

Something in your dependency tree is pulling in an older version of `k8s-openapi`. Try to look at `cargo tree -i k8s-openapi` to see what that is.

Don't know if you've seen, but this is something they had to tackle on the go side as well with Apply* variants of all the structs. Basically an entirely parallel...

Just saw this as well from https://github.com/kube-rs/kube-rs/issues/620 and I suspect it might have caused the interesting side-effect of inlining the body_path.txt file 3 times.

Have cloned afterparty and tried out with some updated schemas, parse errors appear to go away. I can submit a PR with some updates as I go along if you'd...

Apply a square root on each side rather than expanding the parens.

Given some interest, maybe this could be re-opened since #1209 died?

Ah, I think that might be due to a bigger refactor around oauth, sorry :( We never technically implemented the auth providers right until recently, but I guess it kind...