Torin Sandall
Torin Sandall
We need to explain how people can manage Gatekeeper installations. Some things that come to mind: * How do you install and upgrade Gatekeeper (gotchas?) * How do you secure...
We need to produce docs aimed at Kubernetes admins that primarily work with existing templates. For example, we need docs that cover: * How admins can discover available templates *...
Per discussion in open-policy-agent/gatekeeper#205 and the most recent weekly meeting, I'm opening an issue to decide how the library should be structured and track work for it. ## Scope, goals,...
The policies should be analyzed to determine which Kubernetes resources to replicate into OPA. For example, given a policy like: ``` package kubernetes.admission import data.kubernetes.resources.namespaces import data.kubernetes.resources.pods deny[msg] { ......
Currently the plugin logs the Docker request object as is. As a result, the HTTP body is printed as a an array of bytes (which is not very useful.) Instead,...
In Rego the "dot" operator selects fields in arrays, objects, and sets. If the field is missing, the variable assignments in the evaluation context do not produce a result, i.e.,...
In the same way that we recently added a -t/--target flag to opa eval, opa test, etc. it would be nice to have a flag to enable/control the optimization level...
This is more of a question than a bug or feature request. I've noticed my tab completion function is called when users paste text into a REPL built on top...
The arithmetic operators use the go math/big library under the hood however we seem to be running into loss-of-precision problems with several test cases. These cases from the rego-cpp implementation...
Currently the in-memory store uses maps and slices to store base documents. In some cases, this can result in high latency during policy evaluation if a large amount of data...