-
Notifications
You must be signed in to change notification settings - Fork 40.1k
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 race condition when attach azure disk in vmss #71992
Conversation
/retest |
fix gofmt issue
e5a97ae
to
c12e82f
Compare
/hold cancel |
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
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: andyzhangx, feiskyer 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 |
…1992-upstream-release-1.12 Automated cherry pick of #71992: fix race condition when attach azure disk in vmss
…1992-upstream-release-1.11 Automated cherry pick of #71992: fix race condition when attach azure disk in vmss
…1992-upstream-release-1.13 Automated cherry pick of #71992: fix race condition when attach azure disk in vmss
What type of PR is this?
What this PR does / why we need it:
When attach/detach azure disk in vmss, it updates whole VM info, including:
networkProfile
,storageProfile
, while this would lead to race condition when there is also network related setting changing in k8s cloud provider in the mean time.This PR fixed this issue by using a new vm data and only updates
storageProfile
related info.Related RESET api doc could be found here:
https://docs.microsoft.com/en-us/rest/api/compute/virtualmachinescalesetvms/update
Which issue(s) this PR fixes:
Fixes #71991
Special notes for your reviewer:
Does this PR introduce a user-facing change?:
Release note:
/kind bug
/assign @feiskyer
/priority important-soon
/sig azure
cc @brendandburns @khenidak
By my testing, it works well in disk attach/detach, while let me hold for a while, check with vmss team first. Thanks.
/hold