use of com.att.cdp.openstack.OpenStackContext in project AJSC by att.
the class TestNovaConnector method testGlanceConnector.
@Test
@Ignore
public void testGlanceConnector() throws ZoneException {
OpenStackContext context = login();
NovaConnector connector = context.getNovaConnector();
assertNotNull(connector);
Access access = connector.getAccess();
assertNotNull(access);
Nova client = connector.getClient();
assertNotNull(client);
logout(context);
}
use of com.att.cdp.openstack.OpenStackContext in project AJSC by att.
the class TestQuantumConnector method testGlanceConnector.
@Test
@Ignore
public void testGlanceConnector() throws ZoneException {
OpenStackContext context = login();
QuantumConnector connector = context.getQuantumConnector();
assertNotNull(connector);
Access access = connector.getAccess();
assertNotNull(access);
Quantum client = connector.getClient();
assertNotNull(client);
logout(context);
}
use of com.att.cdp.openstack.OpenStackContext in project AJSC by att.
the class TestOpenStackACL method testCtorACL.
@Test
@Ignore
public void testCtorACL() throws ZoneException {
OpenStackContext context = login();
SecurityGroup group = new SecurityGroup();
logout(context);
}
use of com.att.cdp.openstack.OpenStackContext in project AJSC by att.
the class OpenStackNetworkService method connect.
/**
* This is a helper method used to construct the Nova service object and setup the environment to access the
* OpenStack compute service (Nova).
*
* @throws NotLoggedInException
* If the user is not logged in
* @throws ContextClosedException
* If the user attempts an operation after the context is closed
*/
private void connect() throws NotLoggedInException, ContextClosedException {
checkLogin();
checkOpen();
Context context = getContext();
OpenStackContext osContext = (OpenStackContext) context;
quantumConnector = osContext.getQuantumConnector();
novaConnector = osContext.getNovaConnector();
((OpenStackContext) context).refreshIfStale(quantumConnector);
((OpenStackContext) context).refreshIfStale(novaConnector);
}
use of com.att.cdp.openstack.OpenStackContext in project AJSC by att.
the class OpenStackNetworkService method reserveFreeFloatingIPAddress.
/**
* This method is used o determine which IP addresses in the floating ip address pool specified are free, and to
* reserve the first one
*
* @param pool
* The name of the pool to be searched, or null if we are searching all pools available to the tenant
* @return The reserved IP address (or null if there are none available in the pool)
* @throws OpenStackResponseException
* @throws OpenStackConnectException
*/
@SuppressWarnings("nls")
private String reserveFreeFloatingIPAddress(String pool) throws OpenStackConnectException, OpenStackResponseException {
Nova client = novaConnector.getClient();
HashSet<String> available = new HashSet<>();
Context context = getContext();
FloatingIps ips = client.floatingIps().list().execute();
for (FloatingIp ip : ips.getList()) {
if (pool == null || pool.equalsIgnoreCase(ip.getPool())) {
available.add(ip.getIp());
}
}
Servers servers = client.servers().list(true).execute();
for (com.woorea.openstack.nova.model.Server server : servers.getList()) {
Addresses allocatedAddresses = server.getAddresses();
Map<String, List<Address>> addressMap = allocatedAddresses.getAddresses();
for (Map.Entry<String, List<Address>> entry : addressMap.entrySet()) {
List<Address> addressList = entry.getValue();
for (Address address : addressList) {
if (address.getType().equalsIgnoreCase("floating")) {
available.remove(address.getAddr());
}
}
}
}
if (!available.isEmpty()) {
Iterator<String> it = available.iterator();
while (it.hasNext()) {
String ip = it.next();
if (((OpenStackContext) context).allocateFloatingIP(ip)) {
return ip;
}
}
}
return null;
}
Aggregations