John Ryan
John Ryan
While the files we generally refer to as "templates" are technically implemented as Starlark modules, they are not loadable by the user. How about this? > - `template`: single file;...
Started working on this. Thought I was done when `struct.encode()` was working as described in this issue. However, while writing up corresponding docs, discovered that `struct.make()` is an entirely different...
Another example: https://kubernetes.slack.com/archives/CH8KCCKA5/p1632776327452000 ```yaml #@overlay/match by=lambda _, left, right: left["metadata"]["name"].startswith("antrea-config-") and left["metadata"]["namespace"] == "kube-system" and left["kind"] == "ConfigMap" --- ``` vs. ```yaml #@overlay/match by=overlay.subset({"kind": "ConfigMap", "metadata", {"name": lambda v: v.startswith("antrea-config-")},...