> @@ -176,6 +185,16 @@ public boolean apply(final String name) {
> hwProfile.location = location.name();
> hwProfiles.add(hwProfile);
> }
> +*/
> + VMHardware hwProfile = new VMHardware();
> + hwProfile.name = "Standard_A5";
> + hwProfile.numberOfCores = 2;
> + hwProfile.osDiskSizeInMB = 1047552;
> + hwProfile.resourceDiskSizeInMB = 138240;
> + hwProfile.memoryInMB = 14336;
> + hwProfile.maxDataDiskCount = 4;
> + hwProfile.location = "westus";
> + hwProfiles.add(hwProfile);
We need to remove the hardcoded hardware profiles before merging. We don't want
to restrict users just to this configuration.
---
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/291/files/8a39037237f5cccc7d100bc58a9a82bdb89924b1#r67880061