Package org.platformlayer.ops

Examples of org.platformlayer.ops.OpsException


          }
          return server;
        }
      });
    } catch (TimeoutException e) {
      throw new OpsException("Timeout while waiting for attached public IP to show up", e);
    } catch (ExecutionException e) {
      throw new OpsException("Error while waiting for attached public IP to show up", e);
    }

    return server;
  }
View Full Code Here


        log.info("Starting SHUTOFF server: " + serverId);

        AsyncServerOperation powerOnOperation = computeClient.powerServerOn(serverId);
        return powerOnOperation;
      } catch (OpenstackException e) {
        throw new OpsException("Error powering server on", e);
      }
    }

    return null;
  }
View Full Code Here

    URI uri;
    try {
      uri = new URI(scheme, null, host, port, null, null, null);
    } catch (URISyntaxException e) {
      throw new OpsException("Error building URI", e);
    }
    return uri;
  }
View Full Code Here

    } catch (ProcessExecutionException e) {
      ProcessExecution execution = e.getExecution();
      if (execution.getExitCode() == 1 && execution.getStdErr().contains("Access denied")) {
        return false;
      }
      throw new OpsException("Unexpected error connecting to MySQL", e);
    }
  }
View Full Code Here

    try {
      Access access = client.getSession().getAuthenticationToken();
      tokenId = access.getToken().getId();
      glanceBaseUrl = client.root().getBaseUrl();
    } catch (OpenstackException e) {
      throw new OpsException("Error getting glance url", e);
    }

    // Upload to glance
    String glanceUploadUrl = glanceBaseUrl;
    if (!glanceUploadUrl.endsWith("/")) {
      glanceUploadUrl += "/";
    }
    glanceUploadUrl += "images";

    String imageName = "image-" + System.currentTimeMillis();

    Command command = Command.build("curl");
    command.addLiteral("--fail");
    command.addLiteral("--upload-file").addFile(imageFile);
    command.addLiteral("-X").addLiteral("POST");

    command.addLiteral("-H").addQuoted("X-Auth-Token: " + tokenId);

    command.addLiteral("-H").addQuoted("Content-Type: application/octet-stream");
    command.addLiteral("-H").addQuoted("X-Image-Meta-Name: " + imageName);
    command.addLiteral("-H").addQuoted("X-Image-Meta-Is-Public: True");

    // if (isQcow2) {
    // command.addLiteral("-H").addQuoted("X-Image-Meta-Disk-Format: qcow2");
    // } else {
    if (diskFormat != null) {
      command.addLiteral("-H").addQuoted("X-Image-Meta-Disk-Format: " + diskFormat);
    }

    command.addLiteral("-H").addQuoted("X-Image-Meta-Container-Format: bare");
    // }
    // command.addLiteral("-H").addQuoted("X-Image-Meta-Min-Disk: 0");
    // command.addLiteral("-H").addQuoted("X-Image-Meta-Min-Ram: 0");
    // command.addLiteral("-H").addQuoted("X-Image-Meta-Image-Size: " + rawImageFileSize);
    command.addLiteral("-H").addQuoted("X-Image-Meta-Size: " + rawImageFileSize);

    // image_meta = {'name': fields.pop('name'),
    // 'is_public': utils.bool_from_string(
    // fields.pop('is_public', False)),
    // 'disk_format': fields.pop('disk_format', 'raw'),
    // 'min_disk': fields.pop('min_disk', 0),
    // 'min_ram': fields.pop('min_ram', 0),
    // 'container_format': fields.pop('container_format', 'ovf')}

    // glance add name=DebianSqueeze is_public=True disk_format=raw container_format=bare
    // system_id="http://org.platformlayer/service/imagefactory/v1.0:bootstrap"
    // image_size="${RAW_SIZE}" < disk.raw.gz

    command.addQuoted(glanceUploadUrl);
    command.setTimeout(TimeSpan.FIFTEEN_MINUTES);

    ProcessExecution execution = target.executeCommand(command);

    String imageId;
    // String imageLocation;
    {
      // {"image": {"status": "active", "name": null, "deleted": false,
      // "container_format": null, "created_at":
      // "2011-04-10T00:15:57.563479",
      // "disk_format": null, "updated_at":
      // "2011-04-10T00:21:29.300219", "id": 8, "location":
      // "file:///var/lib/glance/images/8", "checksum":
      // "bfbd641fe10edb3ecea933303e5408ec", "is_public": false,
      // "deleted_at":
      // null, "properties":
      // {}, "size": 8577351680}}

      // {"image": {"status": "active", "name": "image-1324662647963", "deleted": false, "container_format": null,
      // "created_at": "2011-12-23T17:50:48.265346", "disk_format": "qcow2",
      // "updated_at": "2011-12-23T17:51:42.229359", "properties": {}, "min_disk": 0, "id":
      // "f41d4043-f608-ea2f-a642-e7621bec2b66", "checksum": "ffeafdc8757658b481f3b1a3c2a33c98", "owner": null,
      // "is_public": true, "deleted_at": null, "min_ram": 0, "size": 925761536}}
      try {
        JSONObject json = new JSONObject(execution.getStdOut());
        JSONObject image = json.getJSONObject("image");
        // imageLocation = image.getString("location");
        imageId = image.getString("id");
      } catch (JSONException e) {
        log.warn("Image upload returned: " + execution.getStdOut());
        throw new OpsException("Error parsing return value from image upload", e);
      }
    }

    if (tags != null) {
      updateImageTags(imageId, tags);
View Full Code Here

      for (Tag tag : tags.getTags()) {
        tagMap.put(tag.getKey(), tag.getValue());
      }
      glanceClient.root().images().image(imageId).updateMetadata(tagMap, replace);
    } catch (OpenstackException e) {
      throw new OpsException("Error updating image tags", e);
    }
  }
View Full Code Here

    Iterable<Image> images;
    try {
      images = glanceClient.root().images().list(true);
    } catch (OpenstackException e) {
      throw new OpsException("Error listing images", e);
    }

    for (Image image : images) {
      boolean match = true;
View Full Code Here

    {
      RunScript script = dbConnection.addChild(RunScript.class);
      try {
        script.sql = ResourceUtils.get(getClass(), "schema.sql");
      } catch (IOException e) {
        throw new OpsException("Error loading SQL script resource", e);
      }
    }
  }
View Full Code Here

        filter));
    if (instances.size() == 0) {
      return null;
    }
    if (instances.size() != 1) {
      throw new OpsException("Found multiple instances with tag: " + tag);
    }
    return instances.get(0);
  }
View Full Code Here

  public String runTemplate(String resourceName, Map<String, Object> model) throws OpsException {
    String templateName = resourceName;
    try {
      return templateEngine.runTemplateToString(templateName, model);
    } catch (TemplateException e) {
      throw new OpsException("Error running template", e);
    }
  }
View Full Code Here

TOP

Related Classes of org.platformlayer.ops.OpsException

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.