-
Notifications
You must be signed in to change notification settings - Fork 524
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
OCPBUGS-48366: Clean backport of transit subnets to 4.13 #2144
base: release-4.13
Are you sure you want to change the base?
Conversation
@pliurh: This pull request references Jira Issue OCPBUGS-48323, which is invalid:
Comment 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 openshift-eng/jira-lifecycle-plugin repository. |
Hello @pliurh! Some important instructions when contributing to openshift/api: |
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: pliurh 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 |
@arghosh93 PTAL |
@pliurh: This pull request references Jira Issue OCPBUGS-48366, which is invalid:
Comment 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 openshift-eng/jira-lifecycle-plugin repository. |
Although transit switch doesn't exsit in 4.13. We need this flag to allow users to customize the value before upgrading to 4.14. Because estimated rule cost total exceeding cost limit for entire OpenAPIv3 schema, some x-kubernetes-validations are removed. Signed-off-by: Peng Liu <[email protected]>
2e7b000
to
920262c
Compare
@pliurh: all tests passed! 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-sigs/prow repository. I understand the commands that are listed here. |
/jira refresh |
@pliurh: This pull request references Jira Issue OCPBUGS-48366, which is invalid:
Comment 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 openshift-eng/jira-lifecycle-plugin repository. |
/jira refresh |
@pliurh: This pull request references Jira Issue OCPBUGS-48366, which is invalid:
Comment 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 openshift-eng/jira-lifecycle-plugin repository. |
/jira refresh |
@zhaozhanqi: This pull request references Jira Issue OCPBUGS-48366, which is valid. The bug has been moved to the POST state. 7 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 openshift-eng/jira-lifecycle-plugin repository. |
/label qe-approved |
@pliurh: This pull request references Jira Issue OCPBUGS-48366, which is valid. 7 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 openshift-eng/jira-lifecycle-plugin repository. |
// default which is subject to change over time. | ||
// The current default subnet is 100.88.0.0/16 | ||
// The subnet must be large enough to accomadate one IP per node in your cluster | ||
// The value must be in proper IPV4 CIDR format |
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.
Generated OpenAPI spec gets added to our public Openshift document. For that reason we should be mindful about what we add here as comment.
- Interconnect is not supported in 4.13.
- The subnet can not be changed at day 2.
- 100.88.0.0/16 was not default transit switch subnet in 4.13.
https://github.com/ovn-kubernetes/ovn-kubernetes/pull/3950/files#diff-25b766c2e6c28d5bead46916736a69559de3aef474c269761b51dde666898b8dL192
// The subnet must be large enough to accomadate one IP per node in your cluster | ||
// The current default subnet is fd97::/64 | ||
// The value must be in proper IPV6 CIDR format | ||
// Note that IPV6 dual addresses are not permitted |
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.
Generated OpenAPI spec gets added to our public Openshift document. For that reason we should be mindful about what we add here as comment.
- Interconnect is not supported in 4.13.
- The subnet can not be changed at day 2.
Do we need testsuite like we did in 4.14? |
Although transit switch doesn't exsit in 4.13. We need this flag to allow users to customize the value before upgrading to 4.14.