Skip to content

Commit

Permalink
new note and fix text block
Browse files Browse the repository at this point in the history
  • Loading branch information
libesz committed Nov 20, 2023
1 parent 14a791b commit 214b5d2
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions content/en/blog/2023/egress-sni/index.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
title: [WIP] Routing HTTPS/TLS traffic to arbitrary remote destinations
description: A generic approach to set up egress gateways and use them to route traffic to a restricted set of target remote hosts dynamically, supporting wildcard domains.
title: "[WIP] Routing HTTPS/TLS traffic to arbitrary remote destinations"
description: "A generic approach to set up egress gateways and use them to route traffic to a restricted set of target remote hosts dynamically, supporting wildcard domains."
publishdate: 2023-12-10
attribution: Gergő Huszty (IBM)
attribution: "Gergő Huszty (IBM)"
keywords: [traffic-management,gateway,mesh,mtls,egress,remote]
---

Expand Down Expand Up @@ -58,7 +58,7 @@ internal destination of the gateway implemented TCP proxy to the internal SNI fo

In order to deploy the sample configuration, create the `istio-egress` namespace, allow injection in it and deploy the following manifest.

{{< text yaml >}}
{{< text plain >}}
# New k8s cluster service to put egressgateway into the Service Registry
# so application sidecars can route traffic towards it within the mesh.
apiVersion: v1
Expand Down Expand Up @@ -342,3 +342,7 @@ items:
cluster: sni_cluster
{{< /text >}}

The solution scales easily. You can pick up multiple domain names to the list, and they are allowlisted as soon as you roll it out!
No need to set up per domain `VirtualService`s or other routing details. Beware the list appears at multiple places, so if you use
some tooling for CI/CD (i.e. Kustomize), the domain name list is better to be extracted to a single place, from where you render into the final
places.

0 comments on commit 214b5d2

Please sign in to comment.