Package com.woorea.openstack.nova.model

Examples of com.woorea.openstack.nova.model.KeyPairs$KeyPairWrapper


      // novaClient.execute(SecurityGroupsExtension.createSecurityGroupRule(securityGroup.getId(),
      // "UDP", 9090, 9092, "0.0.0.0/0"));
      // novaClient.execute(SecurityGroupsExtension.createSecurityGroupRule(securityGroup.getId(),
      // "TCP", 8080, 8080, "0.0.0.0/0"));

      KeyPairs keysPairs = nova.keyPairs().list().execute();

      Images images = nova.images().list(true).execute();

      Flavors flavors = nova.flavors().list(true).execute();

      ServerForCreate serverForCreate = new ServerForCreate();
      serverForCreate.setName("woorea");
      serverForCreate.setFlavorRef(flavors.getList().get(0).getId());
      serverForCreate.setImageRef(images.getList().get(1).getId());
      serverForCreate.setKeyName(keysPairs.getList().get(0).getName());
      serverForCreate.getSecurityGroups()
          .add(new ServerForCreate.SecurityGroup("default"));
      // serverForCreate.getSecurityGroups().add(new
      // ServerForCreate.SecurityGroup(securityGroup.getName()));
View Full Code Here

TOP

Related Classes of com.woorea.openstack.nova.model.KeyPairs$KeyPairWrapper

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.