-
Notifications
You must be signed in to change notification settings - Fork 103
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
Can't add/create an UltraSSD_LRS in the VM #287
Comments
Blocked by #248 Not possible currently, but contributions are welcome |
how complicate is it to do ? can you help guiding me with this? (never wrote in Jenkins plugins, and my Azure knowledge is minimal ) |
the main complicated bit is the datadisk bit general contribution guide: https://github.com/jenkinsci/.github/blob/master/CONTRIBUTING.md#run-locally UI is defined here: ARM templates are defined here: but I don't think you would need to change them, when it's an optional behaviour I recommend modifying the JSON Object in code, as otherwise you need to duplicate your change in like 5 places and realistically they aren't all going to be tested properly. The json object is built up in https://github.com/jenkinsci/azure-vm-agents-plugin/blob/master/src/main/java/com/microsoft/azure/vmagent/AzureVMManagementServiceDelegate.java#L197 |
Version report
Jenkins and plugins versions report:
Reproduction steps
I am trying to add an ultra ssd disk to my vm.
tried 2 things in the Initialization Script:
Results
Expected result:
create new disk or attach an existing one
Actual result:
when creating the new disk , i see it created in the portal, but the command hangs, and the VM creating gets stuck
when trying to attach an existing disk i get this error:
"ERROR: (InvalidParameter) StorageAccountType UltraSSD_LRS can be used only when additionalCapabilities.ultraSSDEnabled is set."
it seems like additionalCapabilities.ultraSSDEnabled is not enabled in the VM
how can i add ultra ssd disk ?
thanks
Matti
The text was updated successfully, but these errors were encountered: