code4clouds commented on this pull request.
> + VirtualMachineScaleSetDNSSettings dnsSettings =
> VirtualMachineScaleSetDNSSettings.create(dnsList);
+
+ NetworkInterfaceConfigurationProperties
networkInterfaceConfigurationProperties =
+ NetworkInterfaceConfigurationProperties.create(true, false,
networkSecurityGroup, dnsSettings, virtualMachineScaleSetIpConfigurations);
+ NetworkInterfaceConfiguration networkInterfaceConfiguration =
NetworkInterfaceConfiguration.create("nicconfig1",
networkInterfaceConfigurationProperties);
+ networkInterfaceConfigurations.add(networkInterfaceConfiguration);
+
+ return
VirtualMachineScaleSetNetworkProfile.create(networkInterfaceConfigurations);
+ }
+
+
+ private ExtensionProfile getExtensionProfile() {
+ List<Extension> extensions = new ArrayList<Extension>();
+
+ List<String> uris = new ArrayList<String>();
+
uris.add("https://mystorage1.blob.core.windows.net/winvmextekfacnt/SampleCmd_1.cmd");
Good point... Do you have location to store a fixed file? I can check this
file first and call it using a RAW GitHub url inside the jclouds repo.
--
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/412#discussion_r143074416