-
Notifications
You must be signed in to change notification settings - Fork 152
add ControllerPublishSupported #363
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
add ControllerPublishSupported #363
Conversation
|
Welcome @ArbelNathan! |
|
Hi @ArbelNathan. Thanks for your PR. I'm waiting for a kubernetes-csi 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. 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. |
pkg/sanity/controller.go
Outdated
| ControllerClient: csi.NewControllerClient(sc.ControllerConn), | ||
| NodeClient: csi.NewNodeClient(sc.Conn), | ||
| } | ||
| r.ControllerPublishSupported = isControllerCapabilitySupported(r, csi.ControllerServiceCapability_RPC_PUBLISH_UNPUBLISH_VOLUME) |
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.
If r.ControllerPublishSupported was always false (= unset), why was ControllerPublishVolume called (as mentioned in #316)?
Are there perhaps ControllerPublishVolume calls which need to be guarded with an if check?
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.
Every test that uses ControllerPublishVolume has its own guard..
If only ControllerPublishVolume can set the volumeInfo's NodeId so maybe that cl.ControllerPublishSupported check is redundant and we should just leave the info.NodeID != "" there (and remove ControllerPublishSupported in Resources I added), but I don't know If we wanna just removed guards.
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.
I prefer to remove ControllerPublishSupported. The code becomes simpler without it and we don't need it because when info.NodeID != "", then we know that ControllerUnpublishVolume can and must be called.
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.
Let's also remove NodeStageSupported. It's only checked once, which can replaced with a isNodeCapabilitySupported call.
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.
ok, done.
|
This looks good, thanks for investigating. Can you squash into a single commit? |
b8aa856 to
d9b9405
Compare
squashed |
pohly
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.
/lgtm
/ok-to-test
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: ArbelNathan, pohly 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 |
What type of PR is this?
/kind failing-test
What this PR does / why we need it:
The lack of
ControllerPublishSupportedinResourcescause this line to always return false.Which issue(s) this PR fixes:
Fixes #316
Special notes for your reviewer:
if you see a more elegant way to enter the
ControllerPublishSupportedintoResourcesplease feel free to fix it.Does this PR introduce a user-facing change?: