Mikail Bagishov
Mikail Bagishov
So, with k3d & k3s v1.20.2, the error is `definition io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup_v2 is a Resource but its URL path segment and scope could not be inferred`. `/openapi/v2` contains the following (inside...
@nico-abram Thank you for your review! I cleaned up all temporary files, moved new definitions to better location and added all definitions present in my local windows sdk headers. As...
Update: `UpdateProcThreadAttribute` takes attribute as `usize` aka `DWORD_PTR`. Does it really mean all attributes declared as `ui64` simply overflow on win x86?
You are talking about https://doc.rust-lang.org/stable/std/ptr/fn.write_volatile.html (stable since 1.9.0), aren't you?
Thanks for the responses! I will study your proposals (so far juniper-eager-loading looks the most promising). Regarding book, I would like to see quite complex example, e.g.: - Response data...
[cargo-wharf](https://github.com/denzp/cargo-wharf) is good at caching too.
I'm going to close this: builders, while being useful, are probably out-of-scope for `kube-rs`, and the rest is already implemented in other PRs
I think starting point is to create a simple request (such as `GET /version`) and to submit it using a) `kube::service::Service` b) manually created `hyper` client Based on results you...
Alternatively, we can replace `ErrorResponse` with `Status`. This way we can still provide `impl Error`.
`Status` from k8s-openapi does not implement Display. What do you think about alternative? - Verify that `kube::client::Status` has all fields that `metav1::Status` has. - Replace `ErrorResponse` with `kube::client::Status` cons: -...