-
Notifications
You must be signed in to change notification settings - Fork 83
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
WIP: Add IPv6 listener config option #1300
base: main
Are you sure you want to change the base?
Conversation
Welcome @covert8! It looks like this is your first PR to knative-extensions/net-kourier 🎉 |
Hi @covert8. Thanks for your PR. I'm waiting for a knative-extensions member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
Hi @covert8 thank you for the contribution! |
/ok-to-test |
pkg/envoy/api/listener.go
Outdated
if ipv6 { | ||
address = "::" | ||
} else { | ||
address = "0.0.0.0" |
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.
We should expose the default value in the cm. We could have one for both http or https or be more flexible and have a different one if it makes sense. @ReToCode wdyth?
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.
yeah makes sense, maybe not everybody wants to open it on all IPs. But we'd need two for IPv4 and IPv6 I think, as they could be different.
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.
Thanks for the review. If I'm understanding it correctly, you'd like http/ipv4 https/ipv4 http/ipv6 https/ipv6 addresses to be supplied by the configmap?
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.
Yeah that is right.
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: covert8 The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
@covert8: The following tests failed, say
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here. |
Changes
Adds config option to enable listening on IPv6 (default false)
/kind bug
Fixes #1299
Release Note
Docs