You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 8 Next »

Draft REST API

 

This is a first pass at a set of REST APIs that support the following workflows.  For actor definitions, see NDS Labs Use Cases.

  1. Cluster admin can manage the "service library" (collection of definitions of available services, similar to the Charm store)
  2. Cluster admin can manage "projects" (a project is a namespace and set of storage/computation quotas)
  3. Project admin can view all available site services and storage resources.
  4. Project admin can manage deployed services (add/remove), associate services where necessary, and assign volumes to services.

 

A few definitions:

  • Service: This is the logical service offered by NDSLabs. For example, Clowder or MongoDB. One NDSLabs service may related to multiple Kubernetes services or Docker images.
  • Service library: Collection of service definitions available to NDSLabs users.
  • Project: Defines a specific project allocation including access and quotas (storage and compute)
  • Service instance: A project-specific configuration of a services.  For example, my instance of Clowder.
  • Volume: An initialized/mounted volume of a specific size that affects the project storage quota and is attached to one or more services.

 

Base path: /api/{version}/

PathActionProject AdminCluster AdminNotes
/servicesList, add site-wide servicesGETPUT 
/services/{service-id}Get, update, delete site-wide servicesGETPUT, DELETE 
/projectsList, add projects GET, PUT 
/projects/{project-id}Get, update, delete projectGET, PUTDELETE 
/projects/{project-id}/serviceInstancesList, add project servicesGET, PUT  
/projects/{project-id}/serviceInstances/{instance-id}Get, update, delete project serviceGET, PUT, DELETE  
/projects/{project-id}/serviceInstances/{instance-id}/statusGet, update, delete project services statusGET, PUT, DELETE  
/projects/{project-id}/volumesList, add project volumesGET, PUT  
/projects/{project-id}/volumes/{volume-id}Get, update, delete project volumesGET, PUT, DELETE  

 

A first draft of the spec is available via git on the NDS-108 branch

https://github.com/nds-org/nds-labs/blob/NDS-108/apiserver/api/swagger-spec/ndslabs.yaml

This can be opened using the Swagger editor demo http://editor.swagger.io/, if desired.

API Server (prototype)

The prototype NDSLabs API Server will be used by the CLI and GUI applications. 

Design

To facilitate rapid development, we'll use the Swagger editor and codegen with Java bindings:

  • Use Swagger editor to define API (running on some dev VM)
  • Use Swagger codegen to generate JAX-RS server bindings and ? client bindings 
  • API server will run under Jetty (default)

Components

We envision the following components:

  • CLI
  • API Server (essentially a webapp running under Jetty)
  • etcd (configuration storage)
  • Kubernetes API client (for interaction with Kubernetes services, etc).
  • Openstack client to handle volume allocation/initialization tasks

 

ndslabs-api-server-v1

  • No labels