-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
Bug OCPBUGS-16249: Add ip=dhcp,dhcp6 option to Kernel args #7367
Bug OCPBUGS-16249: Add ip=dhcp,dhcp6 option to Kernel args #7367
Conversation
Here there are details on why The following are the settings added with
The config got applied correctly. There was an known issue with
|
@MaysaMacedo: This pull request references Jira Issue OCPBUGS-16249, which is valid. The bug has been moved to the POST state. 3 validation(s) were run on this bug
Requesting review from QA contact: The bug has been updated to refer to the pull request using the external bug tracker. In response to this:
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/test-infra repository. |
/cc @mandre |
/retest-required |
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.
It would be nice if we had tests, in the form of unit tests and/or manifests test (like I did in #7363) to verify we correctly generate the manifest adding the kernel option.
@MaysaMacedo: This pull request references Jira Issue OCPBUGS-16249, which is valid. 3 validation(s) were run on this bug
Requesting review from QA contact: In response to this:
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/test-infra repository. |
42e9b7c
to
0aa6a30
Compare
@MaysaMacedo: This pull request references Jira Issue OCPBUGS-16249, which is valid. 3 validation(s) were run on this bug
Requesting review from QA contact: In response to this:
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/test-infra repository. |
Note that this configuration is only enforced for day-1 dual-stack clusters. Once we start working on conversion to dual-stack clusters we will need to figure out one additional way on how to apply this config. |
0aa6a30
to
93954ae
Compare
da450ae
to
691a196
Compare
/lgtm |
691a196
to
5cc87cf
Compare
5cc87cf
to
156093f
Compare
/lgtm |
On clusters configured with dual-stack network the IPv4 and IPv6 addresses can be added to the main interface at different time, which results in the openshift node addresses not containing the IPv6 address. This commit fixes the issue by including `ip=dhcp,dhcp6` to the kernel args of masters and works, which sets `required-timeout` to an value that the IP configuration will be tried before succeeds. This configuration is valid for day1 dual-stack clusters only.
156093f
to
641857f
Compare
/lgtm |
/assign @r4f4 |
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.
/lgtm
/approve
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.
/approve
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: mandre, r4f4 The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
@MaysaMacedo: The following tests failed, say
Full PR test history. Your PR dashboard. 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/test-infra repository. I understand the commands that are listed here. |
/test e2e-aws-ovn |
/retest |
@MaysaMacedo: Jira Issue OCPBUGS-16249: All pull requests linked via external trackers have merged: Jira Issue OCPBUGS-16249 has been moved to the MODIFIED state. In response to this:
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/test-infra repository. |
On clusters configured with dual-stack network the
IPv4 and IPv6 addresses can be added to the main interface
at different time, which results in the openshift node addresses
not containing the IPv6 address. This commit fixes the issue
by including
ip=dhcp,dhcp6
to the kernel args of masters and works,which sets
required-timeout
to an value that the IP configurationwill be tried before succeeds. This configuration is valid for day1
dual-stack clusters only.
Partially Implements: openshift/enhancements#1365