<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux/meta-cloud-services.git/meta-openstack/recipes-devtools/python/python-rally, branch master</title>
<subtitle>Mirror of git.yoctoproject.org/meta-cloud-services.git</subtitle>
<id>https://git.enea.com/cgit/linux/meta-cloud-services.git/atom?h=master</id>
<link rel='self' href='https://git.enea.com/cgit/linux/meta-cloud-services.git/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-cloud-services.git/'/>
<updated>2015-11-16T20:11:44+00:00</updated>
<entry>
<title>init: no need to close (non-existing) ps file descriptors</title>
<updated>2015-11-16T20:11:44+00:00</updated>
<author>
<name>Mark Asselstine</name>
<email>mark.asselstine@windriver.com</email>
</author>
<published>2015-11-12T02:50:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-cloud-services.git/commit/?id=d0206f9f16905937397f27fb8c18a46331d13056'/>
<id>urn:sha1:d0206f9f16905937397f27fb8c18a46331d13056</id>
<content type='text'>
Attempting to get the status of various daemons which are part of the
compute image results in an error:

ps: write error: Bad file descriptor

Switch to using the more standard io redirection techniques to avoid
this error.

Signed-off-by: Mark Asselstine &lt;mark.asselstine@windriver.com&gt;
Signed-off-by: Bruce Ashfield &lt;bruce.ashfield@windriver.com&gt;
</content>
</entry>
<entry>
<title>keystone: Change packages configuration to use apache keystone.</title>
<updated>2014-09-22T15:46:43+00:00</updated>
<author>
<name>Liam R. Howlett</name>
<email>Liam.Howlett@WindRiver.com</email>
</author>
<published>2014-09-19T19:52:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-cloud-services.git/commit/?id=1c34736247f8ae18d054cfecfec54152bf27f1d9'/>
<id>urn:sha1:1c34736247f8ae18d054cfecfec54152bf27f1d9</id>
<content type='text'>
This commit changes all required configurations to use keystone running
on apache.  The following packages configurations were modified for
keystone running on apache:  python-neutron, python-nova, tempest,
        python-swift, python-rally, python-heat, python-glance,
        python-cinder, python-ceilmoeter, python-horizon.

Signed-off-by: Liam R. Howlett &lt;Liam.Howlett@WindRiver.com&gt;
</content>
</entry>
<entry>
<title>rally: verification subunit2json fail to open result file</title>
<updated>2014-07-17T04:12:13+00:00</updated>
<author>
<name>Vu Tran</name>
<email>vu.tran@windriver.com</email>
</author>
<published>2014-07-10T14:23:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-cloud-services.git/commit/?id=ac22bcdf86fa6d687ed9421c0de39cb131e0c62d'/>
<id>urn:sha1:ac22bcdf86fa6d687ed9421c0de39cb131e0c62d</id>
<content type='text'>
Command "rally verify start" gives the following error:

TRACE rally   File "/usr/lib64/python2.7/site-packages/rally/verification/verifiers/tempest/subunit2json.py", line 113, in stopTestRun
TRACE rally     with open(self.results_file, 'wb') as results_file:
TRACE rally TypeError: coercing to Unicode: need string or buffer, int found

For Python 2.x, open() requires a string but not file descriptor number.
However for Python 3.x, open() can either accept a string file name of a
file descriptor number.

So modify code to pass in open() string file name.  This should work
for both Python 2.x and 3.x

Signed-off-by: Vu Tran &lt;vu.tran@windriver.com&gt;

</content>
</entry>
<entry>
<title>rally: sqlalchemy-db missing name for ENUM</title>
<updated>2014-07-17T04:12:13+00:00</updated>
<author>
<name>Vu Tran</name>
<email>vu.tran@windriver.com</email>
</author>
<published>2014-07-10T14:23:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-cloud-services.git/commit/?id=f550a375c091a27aeb80d64140c943beba788127'/>
<id>urn:sha1:f550a375c091a27aeb80d64140c943beba788127</id>
<content type='text'>
Command "rally-manage db recreate" gives the following error:

TRACE rally   File "/usr/lib64/python2.7/site-packages/sqlalchemy/dialects/postgresql/base.py", line 898, in format_type
TRACE rally     raise exc.CompileError("Postgresql ENUM type requires a name.")
TRACE rally CompileError: Postgresql ENUM type requires a name.

Signed-off-by: Vu Tran &lt;vu.tran@windriver.com&gt;

</content>
</entry>
<entry>
<title>Rally verification to use existing tempest</title>
<updated>2014-07-17T04:12:13+00:00</updated>
<author>
<name>Vu Tran</name>
<email>vu.tran@windriver.com</email>
</author>
<published>2014-07-10T14:23:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-cloud-services.git/commit/?id=e2683e0335c6166dd8fc34d1c3656738a9e8518e'/>
<id>urn:sha1:e2683e0335c6166dd8fc34d1c3656738a9e8518e</id>
<content type='text'>
By default, Rally verification requires to do
following things:

* git clone tempest source from upstream
* setup virtualenv for this tempest
* setup testr environment with virtualenv above
* create tempest.conf for this tempest

If tempest is already installed/configured in rootfs
then force Rally to use this existing tempest.

A new introduced option "existing_tempest_config" in /etc/rally/rally.conf
can be used to configure Rally to either use the existing
tempest or to download from upstream.

If the option "existing_tempest_config" is not set then follows
the default path.  If existing_tempest_config is set to absolute
path of tempest config folder (which contains tempest "tools"
and .testr.conf) then Rally uses this existing tempest.

Signed-off-by: Vu Tran &lt;vu.tran@windriver.com&gt;

</content>
</entry>
<entry>
<title>rally: remove ironic support</title>
<updated>2014-07-17T04:12:13+00:00</updated>
<author>
<name>Vu Tran</name>
<email>vu.tran@windriver.com</email>
</author>
<published>2014-07-10T14:23:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-cloud-services.git/commit/?id=be73f6602bb607cb1c4c0ea504d02f523006b648'/>
<id>urn:sha1:be73f6602bb607cb1c4c0ea504d02f523006b648</id>
<content type='text'>
OpenStack ironic is not currently supported, so remove
any code in rally that invokes ironicclient.

Signed-off-by: Vu Tran &lt;vu.tran@windriver.com&gt;
</content>
</entry>
<entry>
<title>introduce openstack Rally component</title>
<updated>2014-07-17T04:12:13+00:00</updated>
<author>
<name>Vu Tran</name>
<email>vu.tran@windriver.com</email>
</author>
<published>2014-07-10T14:23:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-cloud-services.git/commit/?id=3c40059598035598ec1f88775f0793c96dce2f5e'/>
<id>urn:sha1:3c40059598035598ec1f88775f0793c96dce2f5e</id>
<content type='text'>
* Add Rally bb file
* Add Rally deployment json config for existing deployment
* Add task example
* To use custom Rally config file

Signed-off-by: Vu Tran &lt;vu.tran@windriver.com&gt;

</content>
</entry>
</feed>
