From 46c06295426b26c679da465aecd1ccc5fe2cee8c Mon Sep 17 00:00:00 2001 From: Dan Manor Date: Thu, 7 May 2026 15:41:07 +0300 Subject: [PATCH] OSAC-497: Fix overlay graph by grouping NAT rules inside SoftGate subgraph --- features/netris-caas-networking.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/features/netris-caas-networking.md b/features/netris-caas-networking.md index 4fc08df..1cba319 100644 --- a/features/netris-caas-networking.md +++ b/features/netris-caas-networking.md @@ -89,11 +89,13 @@ The SoftGate is the gateway between VPCs and the internet. graph TB internet((Internet)) - mgmt_snat[Mgmt SNAT] - mgmt_api_dnat[Mgmt API DNAT :6443] - hosted_api_dnat[Hosted Cluster API DNAT :6443] - cluster_snat[Cluster SNAT] - ingress_dnat[Hosted Cluster Ingress DNAT :80/:443] + subgraph softgate [SoftGate] + mgmt_snat[Mgmt SNAT] + mgmt_api_dnat[Mgmt API DNAT :6443] + hosted_api_dnat[Hosted Cluster API DNAT :6443] + cluster_snat[Cluster SNAT] + ingress_dnat[Hosted Cluster Ingress DNAT :80/:443] + end subgraph mgmt_vpc [Management VPC] mgmt_gw[Anycast Gateway]