David (Mengqi) Yu
David (Mengqi) Yu
We want to use a sidebar like https://github.com/GoogleContainerTools/kpt-functions-catalog/pull/605/files#diff-b8dd38f16c2e1d175b940404cbb1e048a3dfb79e423890a2aa94dd188ae4647b which is generated from https://raw.githubusercontent.com/GoogleContainerTools/kpt/main/site/sidebar.md. The issue is when external links present, the expand/collapse icons won't show and the inactive part are...
It seems tinygo's reflect package is not fully compatible with golang's native reflect package. I have a golang program. It can be compiled to binary with `go build`. I tried...
This PR introduces 2 commands: `kpt alpha wasm push` and `kpt alpha wasm pull`: - kpt alpha wasm push [path-to-local-wasm-file] [desired-OCI-image-name] - kpt alpha wasm pull [OCI-image-name] [desired-local-path-to-store-the-wasm-file] This PR...
Podman CI sometimes fails with the following error: ``` Error: error attaching to container 4a88c6c75919307675b210c45a5c1a61cda84cfc23d31047f238bedf885cc02a: read unixpacket @->/proc/self/fd/14/attach: read: connection reset by peer\"\n Exit code: 126 ``` The issue has...
WASM can be potentially used as a KRM function runtime and KRM function packaging method. Exploration in the area is in progress. More details will be updated in this thread.
There are at least the following runtimes that we can consider to support in kpt: * Container (already supported) * Exec * Starlark * Remote * Pod in a k8s...
Moving the discussion from slack to GitHub for better visibility and discoverability. I provided the code I used in case it is usefull. go runner code ```golang import ( "encoding/json"...
From https://github.com/kubernetes-sigs/kubebuilder/pull/816#discussion_r297416634 We may want to do some scaffolding besides the `Defaulter` and `Validator` interfaces. Presumably it looks like [the builtin types example](https://github.com/kubernetes-sigs/controller-runtime/tree/master/examples/builtins) in controller runtime. This is mainly for...