Natalie Klestrup Röijezon
Natalie Klestrup Röijezon
The following code: ```nix let x = if a then if b then c else d else if e then f else g; in x ``` is indented by `nix-indent-line`...
This is pretty much required for touch-friendly UIs. I've hacked up a [wrapper widget that implements this](https://github.com/Etimo/biketracker/blob/8ee017c5d02c9c7454a4a3de317f83f8ca2e056f/biketracker-agent/src/widgets/scroll_by_drag.rs) by listening for global events, but it's probably not a great direction in...
serde_yaml 0.9.x now generates documents that are inconsistent with what `kubectl` (and the rest of the K8s ecosystem) expects (as well as the schemas generated by `schemars`), see https://github.com/stackabletech/operator-rs/pull/450, https://github.com/dtolnay/serde-yaml/issues/298....
Currently, we have a bunch of helpers that can implicitly panic the program when their invariants aren't upheld externally, such as [`ResourceExt::name`](https://docs.rs/kube/0.60.0/kube/trait.ResourceExt.html#tymethod.name). These essentially allow the apiserver (or any other...
### Discussed in https://github.com/kube-rs/kube-rs/discussions/948 Originally posted by **jesperpedersen** July 6, 2022 Hi, I'm currently looking at ``` 2022-07-06T08:48:38.812069629-04:00 WARN kube_client::client - Unsuccessful data error parse: 404 page not found 2022-07-06T08:48:38.812085204-04:00...
See https://cloud.google.com/blog/products/containers-kubernetes/kubectl-auth-changes-in-gke. I wonder if this should also allow us to remove the special GKE handling? Looks like this was deprecated in K8s 1.22 and is now being removed in...
This builds on #791, but tries to be more futures-native. In particular: 1. It uses regular future cancellation when on failures 2. It uses future multiplexing (`futures::future::select`) rather than spawning...
## Motivation Often, controllers will need to read the objects that they monitor, not just the "main" object. Currently, you can either `Api::get` the child objects, or set up your...
### Current and expected behavior Let's say that we define the CRD spec as follows (this is just illustrative of the problem, I haven't tried compiling this...): ```rust #[derive(CustomResource)] #[kube(group...
### Would you like to work on this feature? maybe ### What problem are you trying to solve? The obvious way to modify an object if some condition holds would...