-
Notifications
You must be signed in to change notification settings - Fork 352
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
docs: customize envoyproxy dualstack #4639
base: main
Are you sure you want to change the base?
Conversation
60fbcae
to
68d95ef
Compare
@@ -1003,6 +1003,48 @@ spec: | |||
{{% /tab %}} | |||
{{< /tabpane >}} | |||
|
|||
## Customize EnvoyProxy IP Family | |||
|
|||
You can customize the IP family configuration for EnvoyProxy via the EnvoyProxy Config. |
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.
You can customize the IP family configuration for EnvoyProxy via the EnvoyProxy Config. | |
You can customize the IP family configuration for EnvoyProxy via the EnvoyProxy Config. | |
This allows the Envoy Proxy fleet to serve external client over IPv4 as well as IPv6. | |
The below configuration sets the `ipFamily` to `DualStack` to allow ingressing IPv4 as well as IPv6 traffic. | |
**Note**: Envoy Gateway relies on the [Service](https://kubernetes.io/docs/concepts/services-networking/dual-stack/#services) spec of the BackendRef resource (linked to xRoutes) to decide which type of IP addresses to use to route to them. |
thanks @juwon8891, added a comment |
Signed-off-by: Juwon Hwang (Kevin) <[email protected]>
Signed-off-by: Juwon Hwang (Kevin) <[email protected]>
68d95ef
to
f816921
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #4639 +/- ##
==========================================
- Coverage 65.57% 65.53% -0.04%
==========================================
Files 211 211
Lines 31952 31954 +2
==========================================
- Hits 20952 20942 -10
- Misses 9759 9768 +9
- Partials 1241 1244 +3 ☔ View full report in Codecov by Sentry. |
Co-authored-by: Arko Dasgupta <[email protected]> Signed-off-by: Kevin <[email protected]>
docs: customize envoyproxy dualstack
What's Changed