> + .hardware(new HardwareBuilder()
> + .id("")
> + .ram(container.getContainerConfig().getMemory())
> + .processor(new
> Processor(container.getContainerConfig().getCpuShares(),
> container.getContainerConfig().getCpuShares()))
> + .build());
> + builder.status(toPortableStatus.apply(container.getState()));
> + builder.imageId(container.getImage());
> + builder.loginPort(getLoginPort(container));
> + builder.publicAddresses(getPublicIpAddresses());
> + builder.privateAddresses(getPrivateIpAddresses(container));
> +
> + Image image = images.get().get(container.getImage());
> + builder.imageId(image.getId());
> + builder.operatingSystem(image.getOperatingSystem());
> +
> + return builder.build();
Is there a way we can set the credentials here? Even if they are the default
`root:password`? They may come in handy when getting a node (that has not been
created by jclouds) using the ComputeService.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/57/files#r14174259