-
Notifications
You must be signed in to change notification settings - Fork 33
OCPBUGS-2628: Ensure network defs without subnet follow noAllowedAddressPairs #249
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-2628: Ensure network defs without subnet follow noAllowedAddressPairs #249
Conversation
…essPairs Commit 855a22c introduced a bug that caused network definitions without subnets (the one you would get when setting `additionalNetworkIDs` in your `install-config.yaml`) caused the noAllowedAddressPairs property to be skipped while creating the port. This may in turn caused machine-api to fail creating the port because it does not have the permission to create a port with allowed_address_pair, which is often the case when using provider networks.
|
@mandre: This pull request references Jira Issue OCPBUGS-2628, which is invalid:
Comment The bug has been updated to refer to the pull request using the external bug tracker. DetailsIn 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. |
|
@mandre: No Bugzilla bug is referenced in the title of this pull request. DetailsIn 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. |
|
/jira refresh |
|
@mandre: This pull request references Jira Issue OCPBUGS-2628, which is invalid:
Comment DetailsIn 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. |
|
Pre-verified with cluster-bot build (build #249) on top of RHOS-16.1-RHEL-8-20220804.n.1 Using below compute section on install-config.yaml: Installation worked successfully and workers were correctly deployed: The networks spec in the machines objects includes "NoAllowedAddressPairs: true" when the networkId: and, from openstack perspective, the ports are correctly created with the expected configuration: |
|
/label qe-approved |
|
/label backport-risk-assessed |
|
/jira refresh |
|
@mandre: This pull request references Jira Issue OCPBUGS-2628, which is valid. The bug has been moved to the POST state. 6 validation(s) were run on this bug
Requesting review from QA contact: DetailsIn 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. |
|
/approve |
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: pierreprinetti The full list of commands accepted by this bot can be found here. The pull request process is described here DetailsNeeds approval from an approver in each of these files:
Approvers can indicate their approval by writing |
|
/label cherry-pick-approved |
|
e2e-openstack failed due to slow infra. Let's see if we manage to get the job green by itself, otherwise I'll overwrite it since we know the failure has nothing to do with the patch tested (known flake). |
|
/retest-required |
|
Infra failure during deprovision? It's a flake again. At least provisioning and the tests were successful. |
|
@mandre: Overrode contexts on behalf of mandre: ci/prow/e2e-openstack DetailsIn 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. |
|
@mandre: The following tests failed, say
Full PR test history. Your PR dashboard. DetailsInstructions 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. |
|
@mandre: All pull requests linked via external trackers have merged: Jira Issue OCPBUGS-2628 has been moved to the MODIFIED state. DetailsIn 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. |
* Update gophercloud vendor to lastest on master * Allow for setting Tags and Metadata on machines * Set the minimum required micro version to use tags * Propagate machine tags down to ports and networks
Commit 855a22c introduced a bug that caused network definitions without subnets (the one you would get when setting
additionalNetworkIDsin yourinstall-config.yaml) caused the noAllowedAddressPairs property to be skipped while creating the port.This may in turn caused machine-api to fail creating the port because it does not have the permission to create a port with allowed_address_pair, which is often the case when using provider networks.