Natalie Klestrup Röijezon

Results 86 issues of Natalie Klestrup Röijezon

# Repro ```rust use k8s_openapi::api::apps::v1::StatefulSetSpec; println!("{}", serde_yaml::to_string(&StatefulSetSpec::default()).unwrap()); ``` ## Expected ```yaml --- template: {} ``` ## Produced ```yaml --- selector: {} serviceName: "" template: {} ``` # Why is this...

`k8s-openapi` compiles very slowly. That isn't really a dig on it, it's just a big crate. But it would be nice if we could opt in to which APIs are...

Currently, `color_eyre::Context` always generates a new `Backtrace` when converting an error.. https://github.com/yaahc/color-eyre/blob/496a17ec6116d2586b786f95a299b48284e9ad6e/src/lib.rs#L181-L188 This is a regression from `eyre::DefaultContext`, which will try to preserve an existing `Backtrace`, at least on nightly:...

For normal projects it should be identical, but the old behavior would fail for source dependencies since the values would be undefined.

Based on https://github.com/kube-rs/kube-rs/pull/720, but with generalizations for runtime-agnosticity, and and pin-project-lite. Not sure about whether this ultimately belongs here or in a utility crate, but figured it was worth raising...

When writing somewhat more complex `Visitor`s (such as https://github.com/kube-rs/kube-rs/pull/779) there are scenarios where we simply can't apply the transform (like when properties end up conflicting...). It would be nice if...

The automatic type bounds break down when using associated types. For example, for the following code: ```rust trait MyTrait { type Associated; } enum MyType {} impl MyTrait for MyType...

**Is your feature request related to a problem? Please describe.** We need to set the Unix mode for some sockets that we create, since they control access to sensitive system...

A-tokio
M-net
C-feature-request

https://github.com/krustlet/krustlet/blob/a6efe8ad0cbf81939b8a80b98763318e91314512/crates/kubelet/src/node/mod.rs#L447-L454 In general, this seems to be set up to be `linux` in both cases, which means that you can't schedule pods to specific architectures in multiarch clusters. For a...

## What did you do - How was the cluster created? - `k3d cluster create foo` - What did you do afterwards? - Tried to run a Pod (`kubectl run...

bug
k3s