nacx commented on this pull request.
> + .password(password)
+ .privateKey(privateKey)
+ .build();
+
+ return new NodeAndInitialCredentials<Server>(updateServer,
updateServer.id(), serverCredentials);
+ }
+
+ @Override
+ public List<HardwareFlavour> listHardwareProfiles() {
+ return api.serverApi().listHardwareFlavours();
+ }
+
+ @Override
+ public Iterable<SingleServerAppliance> listImages() {
+ GenericQueryOptions options = new GenericQueryOptions();
+ options.options(0, 0, null, Types.OSImageType.Minimal.toString(), null);
Is is a problem to list them all? If it is, we could add a context property for
a string to configure this search, so users can customize, if they want to
filter images, the type of images they're interested in.
--
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/338