Ashutosh Narkar

Results 273 comments of Ashutosh Narkar

@Parsifal-M we have an example tutorial with Gloo Edge [here](https://github.com/open-policy-agent/opa-envoy-plugin/tree/main/examples/gloo-edge). Currently in the [Envoy](https://www.openpolicyagent.org/docs/edge/envoy-introduction/) section of the OPA docs, we have a standalone Envoy and Istio tutorial. We can create...

@platten would you be able to provide an example of how you plan to use the proposed builtin? I would imagine the builtin takes the public key, signed file and...

PR to include bundle type in status: https://github.com/open-policy-agent/opa/pull/4633

Looking at the code there should be an entry with the bundle revision https://github.com/open-policy-agent/opa/blob/main/plugins/bundle/plugin.go#L389. Is that not the case?

Maybe I'm not understanding this correctly. Are you talking about [status](https://www.openpolicyagent.org/docs/latest/management-status/) updates or logging by the OPA agent? The earlier comment was related to the former. If it's the latter,...

The status update contains the bundle revision and also timestamps which can help to understand what bundle OPA is using. Is there something you were expecting in the status update?

@jicowan we should be able to re-use some of the code you've pointed out to implement this in `http.send`.

Sure @mehrankamal feel free to work on it! The [http.send](https://github.com/open-policy-agent/opa/blob/main/topdown/http.go) builtin has support for TLS certificate currently. I would imagine we would need a new request parameter(s) that can be...

> we more or less need the whole function to compute the auth header https://github.com/open-policy-agent/opa/blob/main/plugins/rest/aws.go#L522 right? Looks like. We can move the common code in an `internal` package to avoid...

This change would involve updating the [http transport](https://github.com/open-policy-agent/opa/blob/main/plugins/rest/rest_auth.go#L76) by setting `DisableKeepAlives: true`.