-
Notifications
You must be signed in to change notification settings - Fork 5.1k
iso: enable IPv6 iptables support in ISO kernels #21910
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?
iso: enable IPv6 iptables support in ISO kernels #21910
Conversation
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: kartikjoshi21 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 |
|
Hi @kartikjoshi21. Thanks for your PR. I'm waiting for a github.com 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. |
|
Can one of the admins verify this patch? |
Prepare the ISO kernels to support IPv6 Services using the legacy iptables/ip6tables backend. x86_64: - Explicitly enable IPv6 (CONFIG_IPV6=y). - Enable IPv6 conntrack defragmentation (CONFIG_NF_DEFRAG_IPV6=m). - Enable IPv6 iptables raw and NAT support: - CONFIG_IP6_NF_RAW=m - CONFIG_IP6_NF_NAT=m - CONFIG_IP6_NF_TARGET_MASQUERADE=m aarch64: - Enable IPv6 conntrack defragmentation (CONFIG_NF_DEFRAG_IPV6=m). - Enable IPv6 iptables raw table support (CONFIG_IP6_NF_RAW=m). With these options, the ISO kernels provide the full legacy ip6tables stack (filter/mangle/raw/nat + MASQUERADE) needed by kube-proxy and Calico in iptables mode for IPv6 Services. Fixes: kubernetes#21878 Signed-off-by: Kartik Joshi <[email protected]>
0eb7c37 to
2259701
Compare
|
Steps to test this PR
|
|
/ok-to-build-iso |
medyagh
left a comment
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.
@kartikjoshi21 do you have an example of working with ipv6 with this ISO?
|
Hi @kartikjoshi21, we have updated your PR with the reference to newly built ISO. Pull the changes locally if you want to test with them or update your PR further. |
|
Keywords which can automatically close issues and at(@) or hashtag(#) mentions are not allowed in commit messages. The list of commits with invalid commit messages:
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. |
|
PR needs rebase. 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 @medyagh Thankyou for reviewing the PR, i have just tested if modules are present and ipv6 tables are enabled , test results can be seen here #21910 (comment) . For testing if ipv6 is working i will have to make changes to hyperv driver to support ipv6 which can be added after this change is reviewed #21630. Thanks |
Prepare the ISO kernels to support IPv6 Services using the legacy iptables/ip6tables backend.
x86_64:
aarch64:
With these options, the ISO kernels provide the full legacy ip6tables stack (filter/mangle/raw/nat + MASQUERADE) needed by kube-proxy and Calico in iptables mode for IPv6 Services.