creating a server profile with local storage is problematic #496
-
new-ovserverprofile using a template that has local storage defined gets an error stating that the storage controller might not be installed. you get the same message in the UI, however you issue OK again to override. there is no override from the powershell command. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
This isn't an issue with the library, but with the server itself. If you do need to workaround this, I would suggest the following: $serverprofile = New-OVServerProfile -ServerProfileTemplate $spt -Passthru
# Mimic the "Okay" button in the UI when creating the profile
Send-OVRequest -Uri "/rest/server-profiles?force=all" -method POST -body $serverprofile |
Beta Was this translation helpful? Give feedback.
-
Also, the |
Beta Was this translation helpful? Give feedback.
This isn't an issue with the library, but with the server itself. If you do need to workaround this, I would suggest the following: