<feed xmlns='http://www.w3.org/2005/Atom'>
<title>nova.git/bin/nova-direct-api, branch shared-key-msg</title>
<subtitle>OpenStack's nova patches.</subtitle>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/nova.git/'/>
<entry>
<title>Remove nova Direct API</title>
<updated>2012-04-10T13:23:30+00:00</updated>
<author>
<name>Joe Gordon</name>
<email>jogo@cloudscaling.com</email>
</author>
<published>2012-04-09T18:16:14+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/nova.git/commit/?id=2c14f1818d95cfc9e5dcbc6592b74cac79fb8dfb'/>
<id>2c14f1818d95cfc9e5dcbc6592b74cac79fb8dfb</id>
<content type='text'>
blueprint remove-nova-direct-api

Change-Id: I3229f8d7f37d66fcd6b978966f3a428a69e08bb1
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
blueprint remove-nova-direct-api

Change-Id: I3229f8d7f37d66fcd6b978966f3a428a69e08bb1
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove the last of the gflags shim layer</title>
<updated>2012-02-10T06:31:56+00:00</updated>
<author>
<name>Mark McLoughlin</name>
<email>markmc@redhat.com</email>
</author>
<published>2012-02-03T00:50:58+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/nova.git/commit/?id=d1888a3359345acffd8d0845c137eefd88072112'/>
<id>d1888a3359345acffd8d0845c137eefd88072112</id>
<content type='text'>
Make FLAGS a ConfigOpts instance and fix up all the places where we
expected FlagValues behaviour.

Change-Id: I8f96f42e0d8d30ba6b362d29861e717cf0fa9e89
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Make FLAGS a ConfigOpts instance and fix up all the places where we
expected FlagValues behaviour.

Change-Id: I8f96f42e0d8d30ba6b362d29861e717cf0fa9e89
</pre>
</div>
</content>
</entry>
<entry>
<title>Move cfg to nova.openstack.common</title>
<updated>2012-02-03T19:21:54+00:00</updated>
<author>
<name>Mark McLoughlin</name>
<email>markmc@redhat.com</email>
</author>
<published>2012-02-03T00:50:58+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/nova.git/commit/?id=9871c5f963b6d98240635a9a447d14d46133c910'/>
<id>9871c5f963b6d98240635a9a447d14d46133c910</id>
<content type='text'>
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
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
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
</pre>
</div>
</content>
</entry>
<entry>
<title>Refactor away the flags.DEFINE_* helpers</title>
<updated>2012-01-28T12:37:16+00:00</updated>
<author>
<name>Mark McLoughlin</name>
<email>markmc@redhat.com</email>
</author>
<published>2012-01-23T11:51:14+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/nova.git/commit/?id=82049af90e86380043c59741fa4e1cd2cf24aaa7'/>
<id>82049af90e86380043c59741fa4e1cd2cf24aaa7</id>
<content type='text'>
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
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
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
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove unused flags.Help*Flag</title>
<updated>2012-01-25T13:14:42+00:00</updated>
<author>
<name>Mark McLoughlin</name>
<email>markmc@redhat.com</email>
</author>
<published>2012-01-25T13:14:42+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/nova.git/commit/?id=dd29f420ab9be8e5d05e46185af8505d67faf54f'/>
<id>dd29f420ab9be8e5d05e46185af8505d67faf54f</id>
<content type='text'>
These don't do anything anymore since we just rely on optparse's
--help behaviour.

Change-Id: I7c74456a06fe924503dcfbcfa4da9fc5c26b8ab0
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
These don't do anything anymore since we just rely on optparse's
--help behaviour.

Change-Id: I7c74456a06fe924503dcfbcfa4da9fc5c26b8ab0
</pre>
</div>
</content>
</entry>
<entry>
<title>more cleanup of binaries per review</title>
<updated>2011-08-18T17:55:39+00:00</updated>
<author>
<name>Vishvananda Ishaya</name>
<email>vishvananda@gmail.com</email>
</author>
<published>2011-08-18T17:55:39+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/nova.git/commit/?id=125a2affec7713cdbcb925537d34aea29a2e4230'/>
<id>125a2affec7713cdbcb925537d34aea29a2e4230</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Removed whitespace.</title>
<updated>2011-06-21T16:03:27+00:00</updated>
<author>
<name>Brian Lamar</name>
<email>brian.lamar@rackspace.com</email>
</author>
<published>2011-06-21T16:03:27+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/nova.git/commit/?id=186598a819c4e9c4b1b76aad61e7df56cdddd5be'/>
<id>186598a819c4e9c4b1b76aad61e7df56cdddd5be</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Very small alterations, switched from using start() to pass host/port, to 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.</title>
<updated>2011-06-21T15:25:44+00:00</updated>
<author>
<name>Brian Lamar</name>
<email>brian.lamar@rackspace.com</email>
</author>
<published>2011-06-21T15:25:44+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/nova.git/commit/?id=742c21e4e79ce5a26975b31486ded3956a846c55'/>
<id>742c21e4e79ce5a26975b31486ded3956a846c55</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>pep8 cleanups</title>
<updated>2011-03-24T20:20:15+00:00</updated>
<author>
<name>termie</name>
<email>github@anarkystic.com</email>
</author>
<published>2011-03-24T20:20:15+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/nova.git/commit/?id=c5cbec20d2785d3060d57b55a264fbf936709500'/>
<id>c5cbec20d2785d3060d57b55a264fbf936709500</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>add some more docs and make it more obvious which parts are examples</title>
<updated>2011-03-24T19:42:47+00:00</updated>
<author>
<name>termie</name>
<email>github@anarkystic.com</email>
</author>
<published>2011-03-24T19:42:47+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/simo/public_git/nova.git/commit/?id=a1bde64e91a8b76fd0e69c3bdfc51e4e85adf6f0'/>
<id>a1bde64e91a8b76fd0e69c3bdfc51e4e85adf6f0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
