Skip to content

Commit

Permalink
Update envoy-tutorial-istio.md
Browse files Browse the repository at this point in the history
Correct typ of port in the MeshConfig for extensionProviders and add section about Meshconfig's service value

Signed-off-by: Pindar <131621+Pindar@users.noreply.github.com>
  • Loading branch information
Pindar authored and ashutosh-narkar committed Aug 2, 2024
1 parent ee9ab0b commit db0a80b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docs/content/envoy-tutorial-istio.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,12 +143,14 @@ data:
- name: opa-ext-authz-grpc
envoyExtAuthzGrpc:
service: opa-ext-authz-grpc.local
port: "9191"
port: 9191
```
See [the Istio Docs for AuthorizationPolicy](https://istio.io/latest/docs/tasks/security/authorization/authz-custom/#define-the-external-authorizer) for
more details.
The format of the service value is [<Namespace>/]<Hostname>. The specification of <Namespace> is required only when it is insufficient to unambiguously resolve a service in the service registry. See also the [configuration documentation](https://istio.io/latest/docs/reference/config/istio.mesh.v1alpha1/#MeshConfig-ExtensionProvider-EnvoyExternalAuthorizationGrpcProvider). Example: “opa-ext-authz-grpc.foo.svc.cluster.local” or “bar/opa-ext-authz-grpc.local”.
### 3. Enable automatic injection of the Istio Proxy and OPA-Envoy sidecars in the namespace where the app will be deployed, e.g., `default`

```bash
Expand Down

0 comments on commit db0a80b

Please sign in to comment.