Jump to: navigation, search

Difference between revisions of "ManagementAPI"

Line 6: Line 6:
 
== Summary ==
 
== Summary ==
  
Provide a general management api for cloud administration applications. The api would include features also provided by nova-manage CLIs. Currently Openstack administration requires access to command lines for performing management operations. This hinders application developers' ability to create Openstack applications.
+
Provide a general management API for cloud administration applications. The API would include features also provided by nova-manage CLIs. Currently [[OpenStack]] administration requires access to command lines for performing management operations. This hinders application developers' ability to create [[OpenStack]] applications.  
 
 
The admin API proposal will compliment the proposed admin account actions [https://blueprints.launchpad.net/nova/+spec/admin-account-actions  admin account action], the following is the description of the proposal:
 
 
 
<pre><nowiki>
 
As a service provider, Rackspace needs to perform certain actions on a per-account basis. For example, an account needs to be suspended for violations of terms of service or non-payment. This specification is for a set of actions that can be performed on an account, which usually translates to actions performed on all the servers belonging to an account.
 
</nowiki></pre>
 
  
 +
The management API proposal will augment the proposed admin account actions interface ([https://blueprints.launchpad.net/nova/+spec/admin-account-actions  admin account action]).
  
 
== Release Note ==
 
== Release Note ==
Line 21: Line 16:
 
== Rationale ==
 
== Rationale ==
  
The lack of management API, administration is only performed with command lines. This hinders application developers' ability to improve the user experience in managing the openstack.  
+
The lack of management API, administration is only performed with command lines (CLIs). This hinders application developers' ability to improve the user experience in managing the [[OpenStack]].
 +
 
 +
There are some administrative APIs within Nova today.  However, these features are incomplete, not fully architected, and available only as extensions today.  While our initial approach would also be to leverage extensions, the goal for the Management API is to better organize and architect all management features.
  
 
== User stories ==
 
== User stories ==
  
* As a cloud Administrator, I want to be able to use a Management API to standup a Controller, Compute, Network and Images
+
* As a cloud Administrator, I want to be able to use my own custom management toolset to standup a Controller, Compute, Network and Images.
* As a Network integrator, I want to support adding new or modify existing network range
+
* As a Network integrator, I want to support adding, modifying, or deleting network ranges.
* As a Nova security Administrator, I want to configure users, projects, tenants, roles, quotas from a UI  
+
* As a Nova security Administrator, I want to configure users, projects, tenants, roles, quotas from a UI.
  
 
== Assumptions ==
 
== Assumptions ==
Line 35: Line 32:
 
== Design ==
 
== Design ==
  
The Administration and management API provides
+
This feature provides REST APIs initially as Nova extensions. The API feature set includes POST, PUT, GET, and DELETE operations where applicable.
 +
 
 +
=== Management Endpoint ===
 +
 
 +
Support a RESTful API, consistent with other [[OpenStack]] APIs, at a new endpoint specific to management operations.
 +
 
 +
=== Architected API ===
 +
 
 +
Rather than creating management APIs unique (unarchitected) for each [[OpenStack]] project, this proposal defines an API pattern general to all [[OpenStack]] projects.
 +
 
 +
=== Plug-ins and Extensions ===
  
* REST APIs for programmatic access as an Nova extension API, the API includes POST/PUT/GET/DELETE operations.
+
Future management operations would be easily added as plug-ins based on the pattern described here.
  
 
=== Instance Type Management ===
 
=== Instance Type Management ===
Line 58: Line 65:
 
service disable
 
service disable
  
=== Network managment ===
+
=== Network management ===
  
 
network add/modify/delete/list
 
network add/modify/delete/list

Revision as of 18:40, 6 April 2012

  • Launchpad Entry: Management API
  • Created: 02 April 2012
  • Contributors: Yehia Beyh, Lyle Wilkinson, Divakar Nandavar

Summary

Provide a general management API for cloud administration applications. The API would include features also provided by nova-manage CLIs. Currently OpenStack administration requires access to command lines for performing management operations. This hinders application developers' ability to create OpenStack applications.

The management API proposal will augment the proposed admin account actions interface (admin account action).

Release Note

See API descriptions for additional details.

Rationale

The lack of management API, administration is only performed with command lines (CLIs). This hinders application developers' ability to improve the user experience in managing the OpenStack.

There are some administrative APIs within Nova today. However, these features are incomplete, not fully architected, and available only as extensions today. While our initial approach would also be to leverage extensions, the goal for the Management API is to better organize and architect all management features.

User stories

  • As a cloud Administrator, I want to be able to use my own custom management toolset to standup a Controller, Compute, Network and Images.
  • As a Network integrator, I want to support adding, modifying, or deleting network ranges.
  • As a Nova security Administrator, I want to configure users, projects, tenants, roles, quotas from a UI.

Assumptions

TBD

Design

This feature provides REST APIs initially as Nova extensions. The API feature set includes POST, PUT, GET, and DELETE operations where applicable.

Management Endpoint

Support a RESTful API, consistent with other OpenStack APIs, at a new endpoint specific to management operations.

Architected API

Rather than creating management APIs unique (unarchitected) for each OpenStack project, this proposal defines an API pattern general to all OpenStack projects.

Plug-ins and Extensions

Future management operations would be easily added as plug-ins based on the pattern described here.

Instance Type Management

Define or delete a new instance type

User/Role Management

user

add/remove/update/list

project

add/remove/update/list

role

add/remove/update/list

Service Management

service state Service list service describe service disable

Network management

network add/modify/delete/list

Implementation

Architecture

attachment:TBD.gif

NOVA-MANAGE API Extensions

Implementation of Management APIs as Nova extensions would be based on the OpenStack defined API extension spec.

Sample extension API for "Network" is as below:

Verb URI
GET /Manage/Network?name=network_type&Project=name&IPrange=int&Subnet=int
GET /Manage/Network/detail?name=network_type&Project=name&IPrange=int&Subnet=int
GET /Manage/Network/IPRange
DELETE /Manage/Network/id
POST /Manage/Network
PUT /Manage/Network/id

Similarly other extensions to be designed.

Test/Demo Plan

This need not be added or completed until the specification is nearing beta.

Unresolved issues

This should highlight any issues that should be addressed in further specifications, and not problems with the specification itself; since any specification with problems cannot be approved.

BoF agenda and discussion

Use this section to take notes during the BoF; if you keep it in the approved spec, use it for summarizing what was discussed and note any options that were rejected.

----