summaryrefslogtreecommitdiffstats
path: root/bin/nova-direct-api
Commit message (Collapse)AuthorAgeFilesLines
* Remove nova Direct APIJoe Gordon2012-04-101-110/+0
| | | | | | blueprint remove-nova-direct-api Change-Id: I3229f8d7f37d66fcd6b978966f3a428a69e08bb1
* Remove the last of the gflags shim layerMark McLoughlin2012-02-101-1/+1
| | | | | | | Make FLAGS a ConfigOpts instance and fix up all the places where we expected FlagValues behaviour. Change-Id: I8f96f42e0d8d30ba6b362d29861e717cf0fa9e89
* Move cfg to nova.openstack.commonMark McLoughlin2012-02-031-1/+1
| | | | | | | | | | | | | | | Move it here so that it can be kept in sync with openstack-common using the new update.py script for code in openstack-common's incubation area. See here for more details: http://wiki.openstack.org/CommonLibrary#Incubation Note: this commit just moves the existing code in Nova with no other changes. A subsequent commit will sync it with latest openstack-common so that it is easier see the new changes. Change-Id: If88d678b1b9bad3d37117de7f7159d7fea8ab4c8
* Refactor away the flags.DEFINE_* helpersMark McLoughlin2012-01-281-2/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | The next obvious step in porting to cfg is to define all options using cfg schemas directly rather than using the flags.DEFINE_* helpers. This is a large change, but it is almost entirely pure refactoring and does not result in any functional changes. The only change to note is that the default values for glance_host, glance_api_servers and default_publisher_id options are now using opt value interpolation i.e. -glance_host=_get_my_ip() +glance_host='$my_ip' -glance_api_servers=['%s:%d' % (FLAGS.glance_host, FLAGS.glance_port)] +glance_api_servers=['$glance_host:$glance_port'] -default_publisher_id=FLAGS.host +default_publisher_id='$host' Also note that the lower_bound check on the {report,periodic}_interval options are no more, but this has been true since cfg was first added. Change-Id: Ia58c8f0aaf61628bb55b1b8485118a2a9852ed17
* Remove unused flags.Help*FlagMark McLoughlin2012-01-251-3/+0
| | | | | | | These don't do anything anymore since we just rely on optparse's --help behaviour. Change-Id: I7c74456a06fe924503dcfbcfa4da9fc5c26b8ab0
* more cleanup of binaries per reviewVishvananda Ishaya2011-08-181-4/+7
|
* Removed whitespace.Brian Lamar2011-06-211-2/+2
|
* Very small alterations, switched from using start() to pass host/port, to ↵Brian Lamar2011-06-211-2/+5
| | | | just defining them up front in init. Doesn't make sense to set them in start because we can't start more than once any way. Also, unbroke binaries.
* pep8 cleanupstermie2011-03-241-1/+0
|
* add some more docs and make it more obvious which parts are examplestermie2011-03-241-2/+13
|
* add an example of a versioned apitermie2011-03-241-1/+10
|
* add Limited, an API limiting/versioning wrappertermie2011-03-241-0/+7
|
* support volume and network in the direct apitermie2011-03-241-2/+7
|
* disable-msg -> disableBrian Lamar2011-03-181-1/+1
|
* add help back to the scripts that don't use service.pytermie2011-02-231-0/+4
|
* switch to explicit call to logging.setup()Vishvananda Ishaya2011-02-211-0/+2
|
* ComputeAPI -> compute.API in bin/nova-direct-api. Fixes LP#704422jaypipes@gmail.com2011-01-181-1/+1
|
* rename easy to direct in the scriptsAndy Smith2011-01-041-1/+1
|
* rename Easy API to Direct APIAndy Smith2011-01-041-0/+61