> +//            timeouts.nodeRunning * 9l / 10l);
> +//      this.serverLatestJobCompletedShort = retry(new 
> ServerLatestJobCompleted(client.getJobServices()),
> +//            timeouts.nodeRunning * 1l / 10l);
> +    }
> +
> +
> +    @Override
> +    public NodeAndInitialCredentials<VirtualMachine> 
> createNodeWithGroupEncodedIntoName(String group, String name,
> +                                                                             
>        Template template) {
> +        logger.info("createNodeWithGroupEncodedIntoName");
> +        checkNotNull(template, "template was null");
> +        checkNotNull(template.getOptions(), "template options was null");
> +        
> checkArgument(template.getOptions().getClass().isAssignableFrom(AzureTemplateOptions.class),
> +                "options class %s should have been assignable from 
> AzureTemplateOptions", template.getOptions().getClass());
> +        AzureTemplateOptions templateOptions = 
> template.getOptions().as(AzureTemplateOptions.class);
> +        checkNotNull(templateOptions.getStorageAccount(), "storage account 
> should be specified in order to create node");

This mandatory field needs to be removed. Users must be able to spawn new nodes 
by just doing:
```java
compute.templageBuilder().build();
```
Consider configuring the storage account as part of the credentials

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/132/files#r24748936

Reply via email to