-
Notifications
You must be signed in to change notification settings - Fork 2.8k
fix(f5): validate virtualservers and transportservers based on IP only #5532
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
fix(f5): validate virtualservers and transportservers based on IP only #5532
Conversation
Hi @mikejoh. Thanks for your PR. I'm waiting for a kubernetes-sigs 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. |
/ok-to-test @visokoo Do you think you can review this PR ? Or at least share your thoughts on it ? |
To elaborate a bit more on this change:
So the change i'm doing here is basically to accomodate for the fact that the IP is preserved regardless of the actual reported object (VS/TS) status. |
Thanks for linking the F5 PR for context. The change makes sense to me in terms of staying in line with the F5 PR, so LGTM. |
Thanks, it's clear. |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: mloiseleur 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 |
What does it do ?
This PR makes sure that we only validate the
vsAddress
field of a (F5 Networks)VirtualServer
andTransportServer
in the respective sources. Earlier we also checked thestatus
field (and only passed through a VS/TS that had astatus
ofok
). What we've realized is that aVirtualServer
(orTransportServer
) can end up in e.g. anerror
state which leaves thevsAddress
intact.More info here: F5Networks/k8s-bigip-ctlr#3723
This partially reverts: #4996.
I've updated the unit tests to reflect that we now only valide the presence of a valid IP address, regardless of the
status
field.Motivation
More