James Sturtevant
James Sturtevant
/kind doc [Before submitting an issue, have you checked the [Troubleshooting Guide](https://capz.sigs.k8s.io/topics/troubleshooting.html)?] **What steps did you take and what happened:** [A clear and concise description of what the bug is.]...
Similar to https://github.com/WasmEdge/wasmedge-rust-sdk/pull/22 but for Windows. https://github.com/containerd/runwasi/pull/238#discussion_r1293502655
The removes the need for Service Principals in the cluster creation process. It uses [managed identities](https://learn.microsoft.com/en-us/entra/identity/managed-identities-azure-resources/overview) on the [management cluster](https://capz.sigs.k8s.io/topics/identities#user-assigned-managed-identity) and [workload clusters ](https://capz.sigs.k8s.io/topics/vm-identity) instead. When running locally you can...
Right now, youki from runwasi will take mounts from the pod spec and map them into the "container" that wraps the spin/wasmtime runtime. There may be cases, like getting a...
I'd love to add as a follow-up, testing applications built using `spin registry push`. _Originally posted by @radu-matei in https://github.com/spinkube/containerd-shim-spin/pull/36#pullrequestreview-1929364851_
- One-line PR description: Adding Windows Kubelet Manager implementation details - Issue link: - Other comments: This is a follow up to https://github.com/kubernetes/kubernetes/pull/124285#issuecomment-2161327319 to add notes on Windows implementation so...
Updates the package to use the latest wasmtime release fixes #306
Containerd has pluggable logging which includes binary logging: https://github.com/containerd/containerd/blob/c7f7fa5390f761b83c3a69cd5709a8d04d912969/core/runtime/v2/README.md#logging Currently we support fifo/file/npipe
The CNCF wg-wasm has published an [OCI artifact format](https://tag-runtime.cncf.io/wgs/wasm/deliverables/wasm-oci-artifact/) for packaging wasm modules and components. The artifact can be produced locally by running the `--as-artifact` flag: ``` cargo run --bin...
We are doing a bunch of set up work for the wasm runtime inside the container and using rust log crate. We are effectively still operating as the "shim" until...