Kevin Flansburg

Results 108 comments of Kevin Flansburg

https://github.com/containernetworking/cni/blob/master/SPEC.md Possibly would break Windows support, but I wonder if you could simply execute the WASM runtime inside of a network namespace, and then invoke the CNI with that namespace.

Unfortunately I think most network providers are closely tied to network namespaces. It does look like something similar could be achieved on Windows.

It does seem like it would be difficult to run the wasm workloads inside of a namespace since they currently run in the Kubelet `tokio` pool. I think this is...

@thomastaylor312 I've spent some time researching this again this morning. My plan is to: 1. [Patch](https://github.com/kflansburg/http-server-provider/commit/f835dd40619a97c66848a1b52457b02500982fa0) `wascc` HTTP capability to allow specifying host (hopefully wasi implementation will allow this too)....

https://github.com/kflansburg/krustlet/tree/networking I've implemented host / port customization in wascc provider using the patched http capability. The port is configured using the first containerPort in the Pod spec, or defaults to...

This was done because we were trying to prevent `kube-system` pods from being scheduled to Krustlet. On some flavors they appear to select for `kubernetes.io/os=linux` and ignore all taints. I...

I wonder if, since we don't know any better, we should remove the OS label from this list, which would allow the user to override it. https://github.com/krustlet/krustlet/blob/108579d28988d57a809ff74c27bd07ec9048328b/crates/kubelet/src/node/mod.rs#L458-L465

Yep, this Pod spec: ``` apiVersion: v1 kind: Pod metadata: name: test spec: containers: - name: test image: busybox command: ["/bin/sh", "-c", "exit 1"] ``` Results in these events, showing...

> It is possible that the registry might've been destroyed because it did not appear to be under active use. We were cleaning up old/unused resources before transitioning the resources...

What ever we decide to do here, I want to keep `RUST_LOG`. It may be confusing but it is widely used and understood by Rust developers. Could we write a...