Eirik A
Eirik A
i think you can still have something that is effectively `(\d*)/(*/d)`, but that only gets the port count parameter if there's a slash possibly `(\d*)(?:\/(\d*))`.. the [rfc4566](https://datatracker.ietf.org/doc/html/rfc4566#section-5.14) indicates that this...
think i found another one: ``` a=rtpmap:107 vnd.onvif.metadata/90000 ``` parses as invalid in the coverage.test
Previous potential problems noted about using predicates **for controllers** that came up before and wanted to note them. This is ultimately not directly related to the interface in this PR...
Have reduced this in scope to not be about controllers. It's currently now just something we can use to filter flattened watcher streams: ```rust let stream = watcher(node, lp).applied_objects().filter_predicates(predicates::annotations); pin_mut!(stream);...
Opening this up for review because I think this has value as is when plugged through `watcher` directly, and have removed/hidden references to controller ideas for it (which are a...
Edited this issue as ApiError was renamed to ErrorResponse when moving to `thiserror`.
I think this would be a fantastic out of the box thing to have, particularly if it can be done without screwing over the kubeconfig! One philosophical aspect about this...
> If these look like a good start, we can create kube-test crate having: > `kube_test`: general test helpers > `kube_test::k3d`: `TestEnv` with `k3d` I think this would be super...
oh, that is interesting, basically runtime simulation of what the apiserver does with `ListParams` I think this type of thing can probably be added direct as `pub` impls on `Store`...
>I'd rather just burn `Context` completely, and make closures The Way to pass state into the reconciler The `Context` is the only way to lift these closures away though, and...