-
Notifications
You must be signed in to change notification settings - Fork 382
[Draft] nat gw2 blog #5738
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
[Draft] nat gw2 blog #5738
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,184 @@ | ||||||||
| --- | ||||||||
| title: "Introducing Managed StandardV2 NAT Gateway for AKS" | ||||||||
| date: "2026-04-26" | ||||||||
| description: "AKS now supports managed NAT gateway v2 for scalable, resilient, and observable egress. Learn how to enable it, migrate safely, and validate outbound traffic." | ||||||||
| authors: | ||||||||
| - ahmed-sabbour | ||||||||
| tags: | ||||||||
| - networking | ||||||||
| - traffic-management | ||||||||
| - operations | ||||||||
| keywords: ["AKS", "managed NAT gateway v2", "egress", "networking", "Azure Kubernetes Service"] | ||||||||
| --- | ||||||||
|
|
||||||||
| AKS now supports **managed NAT gateway v2** for cluster egress. You get a larger egress scaling envelope, improved zone resiliency controls, and better operational visibility for outbound connections. | ||||||||
|
|
||||||||
| If you run workloads with high outbound concurrency, strict outbound IP requirements, or periodic traffic spikes, managed NAT gateway v2 helps you keep egress stable without managing extra network infrastructure by hand. | ||||||||
|
|
||||||||
| <!-- truncate --> | ||||||||
|
|
||||||||
|
||||||||
|  |
Copilot
AI
Apr 24, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The egress validation snippet assumes curl is present inside the container, but the chosen image (mcr.microsoft.com/cbl-mariner/base/core:2.0) isn’t commonly used as a curl test image in this repo. To avoid readers hitting curl: not found, use an image that explicitly includes curl (or install curl as part of the command).
| --image=mcr.microsoft.com/cbl-mariner/base/core:2.0 \ | |
| --image=curlimages/curl:8.12.1 \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The post includes the truncate marker but doesn’t include a hero image afterward. Blog posts in this repo are expected to include a same-directory hero image (for example
./hero-image.png) with descriptive alt text for accessibility and consistent rendering on listing pages.