mirror of https://github.com/apache/jclouds.git
update for elastichosts to support metadata and tags
This commit is contained in:
parent
2ebd5f0247
commit
612aa2c93a
|
@ -122,7 +122,8 @@ public class ElasticStackComputeServiceAdapter implements
|
||||||
}
|
}
|
||||||
|
|
||||||
Server toCreate = small(name, drive.getUuid(), defaultVncPassword).mem(template.getHardware().getRam())
|
Server toCreate = small(name, drive.getUuid(), defaultVncPassword).mem(template.getHardware().getRam())
|
||||||
.cpu((int) (template.getHardware().getProcessors().get(0).getSpeed())).build();
|
.cpu((int) (template.getHardware().getProcessors().get(0).getSpeed()))
|
||||||
|
.tags(template.getOptions().getTags()).userMetadata(template.getOptions().getUserMetadata()).build();
|
||||||
|
|
||||||
ServerInfo from = client.createServer(toCreate);
|
ServerInfo from = client.createServer(toCreate);
|
||||||
client.startServer(from.getUuid());
|
client.startServer(from.getUuid());
|
||||||
|
|
|
@ -93,7 +93,8 @@ public class ServerInfoToNodeMetadata implements Function<ServerInfo, NodeMetada
|
||||||
builder.name(from.getName());
|
builder.name(from.getName());
|
||||||
builder.location(locationSupplier.get());
|
builder.location(locationSupplier.get());
|
||||||
builder.group(nodeNamingConvention.groupInUniqueNameOrNull(from.getName()));
|
builder.group(nodeNamingConvention.groupInUniqueNameOrNull(from.getName()));
|
||||||
|
builder.tags(from.getTags());
|
||||||
|
builder.userMetadata(from.getUserMetadata());
|
||||||
String imageId = getImageIdFromServer.apply(from);
|
String imageId = getImageIdFromServer.apply(from);
|
||||||
if (imageId != null) {
|
if (imageId != null) {
|
||||||
Image image = findImageForId.apply(imageId);
|
Image image = findImageForId.apply(imageId);
|
||||||
|
|
|
@ -24,13 +24,12 @@ import org.jclouds.compute.internal.BaseComputeServiceLiveTest;
|
||||||
import org.jclouds.sshj.config.SshjSshClientModule;
|
import org.jclouds.sshj.config.SshjSshClientModule;
|
||||||
import org.testng.annotations.Test;
|
import org.testng.annotations.Test;
|
||||||
|
|
||||||
import com.google.common.collect.ImmutableMap;
|
|
||||||
import com.google.inject.Module;
|
import com.google.inject.Module;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Adrian Cole
|
* @author Adrian Cole
|
||||||
*/
|
*/
|
||||||
@Test(groups = "live")
|
@Test(groups = "live", testName = "ElasticStackComputeServiceLiveTest")
|
||||||
public class ElasticStackComputeServiceLiveTest extends BaseComputeServiceLiveTest {
|
public class ElasticStackComputeServiceLiveTest extends BaseComputeServiceLiveTest {
|
||||||
|
|
||||||
public ElasticStackComputeServiceLiveTest() {
|
public ElasticStackComputeServiceLiveTest() {
|
||||||
|
@ -42,13 +41,6 @@ public class ElasticStackComputeServiceLiveTest extends BaseComputeServiceLiveTe
|
||||||
return new SshjSshClientModule();
|
return new SshjSshClientModule();
|
||||||
}
|
}
|
||||||
|
|
||||||
// elasticstack does not support metadata
|
|
||||||
@Override
|
|
||||||
protected void checkUserMetadataInNodeEquals(NodeMetadata node, ImmutableMap<String, String> userMetadata) {
|
|
||||||
assert node.getUserMetadata().equals(ImmutableMap.<String, String> of()) : String.format(
|
|
||||||
"node userMetadata did not match %s %s", userMetadata, node);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void testOptionToNotBlock() {
|
public void testOptionToNotBlock() {
|
||||||
// start call is blocking anyway.
|
// start call is blocking anyway.
|
||||||
|
@ -56,6 +48,6 @@ public class ElasticStackComputeServiceLiveTest extends BaseComputeServiceLiveTe
|
||||||
|
|
||||||
protected void checkResponseEqualsHostname(ExecResponse execResponse, NodeMetadata node1) {
|
protected void checkResponseEqualsHostname(ExecResponse execResponse, NodeMetadata node1) {
|
||||||
// hostname is not predictable based on node metadata
|
// hostname is not predictable based on node metadata
|
||||||
assert execResponse.getOutput().trim().equals("ubuntu");
|
assert execResponse.getOutput().trim().equals("ubuntu") : execResponse.getOutput();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue