> +   }
> +
> +   @Override
> +   public Iterable<Hardware> listHardwareProfiles() {
> +      Set<Hardware> hardware = Sets.newLinkedHashSet();
> +      // todo they are only placeholders at the moment
> +      hardware.add(new 
> HardwareBuilder().ids("micro").hypervisor("lxc").name("micro").ram(512).build());
> +      hardware.add(new 
> HardwareBuilder().ids("small").hypervisor("lxc").name("small").ram(1024).build());
> +      hardware.add(new 
> HardwareBuilder().ids("medium").hypervisor("lxc").name("medium").ram(2048).build());
> +      hardware.add(new 
> HardwareBuilder().ids("large").hypervisor("lxc").name("large").ram(3072).build());
> +      return hardware;
> +   }
> +
> +   @Override
> +   public Set<Image> listImages() {
> +      //return api.getRemoteApi().listImages();

Remove this line

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

Reply via email to