Ubuntu 14 vevns are not compatible for compute hosts with ubuntu 16

Bug #1637509 reported by Ionuț Bîru
10
This bug affects 1 person
Affects Status Importance Assigned to Milestone
OpenStack-Ansible
Fix Released
High
Jesse Pretorius

Bug Description

I just deployed a new compute node with ubuntu 16.

Controller is running Ubuntu 14.04

All services related to compute node, neutron agent, nova compute, ceilometer-polling are failing with the error:

AttributeError: 'module' object has no attribute 'openssl_md_meth_names'

By activating venv, even pip list returned the same error.

Default running virtualenv, the script copies the host python version into venv/bin/python. So all my venvs have a copy of ubuntu 14 python binary.

I do not have the error anymore if I remove the binaries from venvs and symlinking to system python but services are still not running.

 I do have to investigate more after that

Oct 28 16:26:14 cloudbox7 ceilometer-polling[26539]: AttributeError: 'module' object has no attribute 'openssl_md_meth_names'
Oct 28 16:26:14 cloudbox7 ceilometer-polling[26539]: _hashlib.openssl_md_meth_names)
Oct 28 16:26:14 cloudbox7 ceilometer-polling[26539]: File "/usr/lib/python2.7/hashlib.py", line 138, in <module>
Oct 28 16:26:14 cloudbox7 ceilometer-polling[26539]: import hashlib as _hashlib
Oct 28 16:26:14 cloudbox7 ceilometer-polling[26539]: File "/usr/lib/python2.7/random.py", line 49, in <module>
Oct 28 16:26:14 cloudbox7 ceilometer-polling[26539]: import random
Oct 28 16:26:14 cloudbox7 ceilometer-polling[26539]: File "/openstack/venvs/ceilometer-14.0.0/lib/python2.7/site-packages/cotyledon/_service_manager.py", line 18, in <module>
Oct 28 16:26:14 cloudbox7 ceilometer-polling[26539]: from cotyledon._service_manager import ServiceManager # noqa
Oct 28 16:26:14 cloudbox7 ceilometer-polling[26539]: File "/openstack/venvs/ceilometer-14.0.0/lib/python2.7/site-packages/cotyledon/__init__.py", line 16, in <module>
Oct 28 16:26:14 cloudbox7 ceilometer-polling[26539]: import cotyledon
Oct 28 16:26:14 cloudbox7 ceilometer-polling[26539]: File "/openstack/venvs/ceilometer-14.0.0/lib/python2.7/site-packages/ceilometer/cmd/polling.py", line 17, in <module>
Oct 28 16:26:14 cloudbox7 ceilometer-polling[26539]: from ceilometer.cmd.polling import main
Oct 28 16:26:14 cloudbox7 ceilometer-polling[26539]: File "/openstack/venvs/ceilometer-14.0.0/bin/ceilometer-polling", line 7, in <module>
Oct 28 16:26:14 cloudbox7 ceilometer-polling[26539]: Traceback (most recent call last):

Revision history for this message
Amy Marrich (amy-marrich) wrote :
Revision history for this message
Jesse Pretorius (jesse-pretorius) wrote :

The issue appears to relate to the different python versions between the platforms.

Options off the cuff:

1. Make the repo build process be both multi-architecture and multi-platform. The multi-arch works by requiring one repo container per architecture. We could extend this to be multi-distro too so that you have to have one container for each distro you're running and it will create wheels for each of them. I don't know if trusty and xenial wheels will overwrite each other though. According to https://www.python.org/dev/peps/pep-0491/ is may not be granular enough to deal with the difference of version in the name to prevent a clash.

2. Re-initialise the python binaries in the venv if the repo_all[0] and the current host differ in python versions.

3. Override the venv download URL to something not accessible from the host so that the host in question falls back to building its own venv. https://github.com/openstack/openstack-ansible/blob/master/playbooks/os-nova-install.yml#L157

Revision history for this message
Jesse Pretorius (jesse-pretorius) wrote :

As the issue is the version of mython in the venv, if the venv build process is updated to build a venv per arch and per OS in the environment, that should take care of it. The caveat would have to be that at least one control plane host must be on each arch and on each OS version.

Changed in openstack-ansible:
status: New → Confirmed
importance: Undecided → High
assignee: nobody → Kevin Carter (kevin-carter)
status: Confirmed → In Progress
Revision history for this message
Jesse Pretorius (jesse-pretorius) wrote :

It looks like it would be possible for us to update the python executable inside the venv using:

virtualenv-tools --reinitialize <path to venv>

This is a lot simpler than any alternative solutions.

Changed in openstack-ansible:
status: In Progress → Confirmed
Revision history for this message
Jesse Pretorius (jesse-pretorius) wrote :

Switching from 'in progress' to 'confirmed' as no work has started just yet.

Logan V (loganv)
Changed in openstack-ansible:
assignee: Kevin Carter (kevin-carter) → Logan V (logan2211)
Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to openstack-ansible-os_aodh (master)

Fix proposed to branch: master
Review: https://review.openstack.org/398072

Changed in openstack-ansible:
status: Confirmed → In Progress
Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to openstack-ansible-os_barbican (master)

Fix proposed to branch: master
Review: https://review.openstack.org/398073

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to openstack-ansible-os_ceilometer (master)

Fix proposed to branch: master
Review: https://review.openstack.org/398074

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to openstack-ansible-os_cinder (master)

Fix proposed to branch: master
Review: https://review.openstack.org/398075

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to openstack-ansible-os_designate (master)

Fix proposed to branch: master
Review: https://review.openstack.org/398076

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to openstack-ansible-os_glance (master)

Fix proposed to branch: master
Review: https://review.openstack.org/398077

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to openstack-ansible-os_gnocchi (master)

Fix proposed to branch: master
Review: https://review.openstack.org/398078

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to openstack-ansible-os_heat (master)

Fix proposed to branch: master
Review: https://review.openstack.org/398079

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to openstack-ansible-os_horizon (master)

Fix proposed to branch: master
Review: https://review.openstack.org/398080

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to openstack-ansible-os_ironic (master)

Fix proposed to branch: master
Review: https://review.openstack.org/398081

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to openstack-ansible-os_keystone (master)

Fix proposed to branch: master
Review: https://review.openstack.org/398082

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to openstack-ansible-os_magnum (master)

Fix proposed to branch: master
Review: https://review.openstack.org/398083

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to openstack-ansible-os_neutron (master)

Fix proposed to branch: master
Review: https://review.openstack.org/398084

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to openstack-ansible-os_nova (master)

Fix proposed to branch: master
Review: https://review.openstack.org/398085

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to openstack-ansible-os_rally (master)

Fix proposed to branch: master
Review: https://review.openstack.org/398086

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to openstack-ansible-os_sahara (master)

Fix proposed to branch: master
Review: https://review.openstack.org/398087

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to openstack-ansible-os_swift (master)

Fix proposed to branch: master
Review: https://review.openstack.org/398088

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to openstack-ansible-os_tempest (master)

Fix proposed to branch: master
Review: https://review.openstack.org/398089

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to openstack-ansible-os_trove (master)

Fix proposed to branch: master
Review: https://review.openstack.org/398090

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to openstack-ansible-os_cloudkitty (master)

Fix proposed to branch: master
Review: https://review.openstack.org/398211

Changed in openstack-ansible:
assignee: Logan V (loganv) → Jesse Pretorius (jesse-pretorius)
Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to openstack-ansible-os_monasca (master)

Fix proposed to branch: master
Review: https://review.openstack.org/398212

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to openstack-ansible-os_watcher (master)

Fix proposed to branch: master
Review: https://review.openstack.org/398213

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to openstack-ansible-os_zaqar (master)

Fix proposed to branch: master
Review: https://review.openstack.org/398214

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to openstack-ansible-os_trove (master)

Reviewed: https://review.openstack.org/398090
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_trove/commit/?id=88aa21d43a588f1b7b011b148fc8c3d1fde55dc2
Submitter: Jenkins
Branch: master

commit 88aa21d43a588f1b7b011b148fc8c3d1fde55dc2
Author: Logan V <email address hidden>
Date: Tue Nov 15 22:15:24 2016 -0600

    Reinitialize venv upon install

    Reinitializes (copies python, etc binaries) into the venv when
    dropping a new venv into place. This is needed because the Python
    binary packaged with the venv may not match the Python running on
    the host it is being installed to. (ie. in the case of a Xenial
    repo container and a Trusty target host.)

    Change-Id: If20462b0d57ee8ec11a479dbaf463e1cd309ac97
    Partial-Bug: #1637509

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to openstack-ansible-os_monasca (master)

Reviewed: https://review.openstack.org/398212
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_monasca/commit/?id=f5a066b36f729e7bb028dc281550d9b3b277b00e
Submitter: Jenkins
Branch: master

commit f5a066b36f729e7bb028dc281550d9b3b277b00e
Author: Jesse Pretorius <email address hidden>
Date: Wed Nov 16 09:14:26 2016 +0000

    Reinitialize venv upon install

    Reinitializes (copies python, etc binaries) into the venv when
    dropping a new venv into place. This is needed because the Python
    binary packaged with the venv may not match the Python running on
    the host it is being installed to. (ie. in the case of a Xenial
    repo container and a Trusty target host.)

    Change-Id: Ibedc836cbab89d82d59c90165cbe064775164742
    Partial-Bug: #1637509

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to openstack-ansible-os_aodh (master)

Reviewed: https://review.openstack.org/398072
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_aodh/commit/?id=e12092e0940066f852883661db57fdf0483e7476
Submitter: Jenkins
Branch: master

commit e12092e0940066f852883661db57fdf0483e7476
Author: Logan V <email address hidden>
Date: Tue Nov 15 22:15:22 2016 -0600

    Reinitialize venv upon install

    Reinitializes (copies python, etc binaries) into the venv when
    dropping a new venv into place. This is needed because the Python
    binary packaged with the venv may not match the Python running on
    the host it is being installed to. (ie. in the case of a Xenial
    repo container and a Trusty target host.)

    Change-Id: I244b445af8fed00906e0b5c8840c49d0b7b7ab87
    Partial-Bug: #1637509

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to openstack-ansible-os_rally (master)

Reviewed: https://review.openstack.org/398086
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_rally/commit/?id=eedc4d372413731618c4f79c2605f1f0efb2be3a
Submitter: Jenkins
Branch: master

commit eedc4d372413731618c4f79c2605f1f0efb2be3a
Author: Logan V <email address hidden>
Date: Tue Nov 15 22:15:24 2016 -0600

    Reinitialize venv upon install

    Reinitializes (copies python, etc binaries) into the venv when
    dropping a new venv into place. This is needed because the Python
    binary packaged with the venv may not match the Python running on
    the host it is being installed to. (ie. in the case of a Xenial
    repo container and a Trusty target host.)

    Change-Id: Ifbe100a7052e41a2e6e4c601287749e2a8dfd0e0
    Partial-Bug: #1637509

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to openstack-ansible-os_heat (master)

Reviewed: https://review.openstack.org/398079
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_heat/commit/?id=a420729b28c9794aaefc189e3f8e8dac3e8b0830
Submitter: Jenkins
Branch: master

commit a420729b28c9794aaefc189e3f8e8dac3e8b0830
Author: Logan V <email address hidden>
Date: Tue Nov 15 22:15:23 2016 -0600

    Reinitialize venv upon install

    Reinitializes (copies python, etc binaries) into the venv when
    dropping a new venv into place. This is needed because the Python
    binary packaged with the venv may not match the Python running on
    the host it is being installed to. (ie. in the case of a Xenial
    repo container and a Trusty target host.)

    Change-Id: I06c58b7fee5cf5755b9490beb94c01dd7a8a3921
    Partial-Bug: #1637509

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to openstack-ansible-os_designate (master)

Reviewed: https://review.openstack.org/398076
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_designate/commit/?id=67173d296c71b5d47f3e0243a457c39c627a930b
Submitter: Jenkins
Branch: master

commit 67173d296c71b5d47f3e0243a457c39c627a930b
Author: Logan V <email address hidden>
Date: Tue Nov 15 22:15:23 2016 -0600

    Reinitialize venv upon install

    Reinitializes (copies python, etc binaries) into the venv when
    dropping a new venv into place. This is needed because the Python
    binary packaged with the venv may not match the Python running on
    the host it is being installed to. (ie. in the case of a Xenial
    repo container and a Trusty target host.)

    Change-Id: I1d6c3765e781b706244fdf0e91c1d6a51679d062
    Partial-Bug: #1637509

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to openstack-ansible-os_ceilometer (master)

Reviewed: https://review.openstack.org/398074
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_ceilometer/commit/?id=2951230035c61b01e27998918f390c3ecedd5542
Submitter: Jenkins
Branch: master

commit 2951230035c61b01e27998918f390c3ecedd5542
Author: Logan V <email address hidden>
Date: Tue Nov 15 22:15:23 2016 -0600

    Reinitialize venv upon install

    Reinitializes (copies python, etc binaries) into the venv when
    dropping a new venv into place. This is needed because the Python
    binary packaged with the venv may not match the Python running on
    the host it is being installed to. (ie. in the case of a Xenial
    repo container and a Trusty target host.)

    Change-Id: Ic49729f7e4f4b94311e5264efd49b2574a71b90b
    Partial-Bug: #1637509

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to openstack-ansible-os_gnocchi (master)

Reviewed: https://review.openstack.org/398078
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_gnocchi/commit/?id=cc29921ae8591a25517a50134052a9441de7c890
Submitter: Jenkins
Branch: master

commit cc29921ae8591a25517a50134052a9441de7c890
Author: Logan V <email address hidden>
Date: Tue Nov 15 22:15:23 2016 -0600

    Reinitialize venv upon install

    Reinitializes (copies python, etc binaries) into the venv when
    dropping a new venv into place. This is needed because the Python
    binary packaged with the venv may not match the Python running on
    the host it is being installed to. (ie. in the case of a Xenial
    repo container and a Trusty target host.)

    Change-Id: I466662705ce7f3bf7ae12cd339040870fd8479de
    Partial-Bug: #1637509

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to openstack-ansible-os_barbican (master)

Reviewed: https://review.openstack.org/398073
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_barbican/commit/?id=741faa1e2f4cf578f33ed00f04dcea9d7f83869c
Submitter: Jenkins
Branch: master

commit 741faa1e2f4cf578f33ed00f04dcea9d7f83869c
Author: Logan V <email address hidden>
Date: Tue Nov 15 22:15:22 2016 -0600

    Reinitialize venv upon install

    Reinitializes (copies python, etc binaries) into the venv when
    dropping a new venv into place. This is needed because the Python
    binary packaged with the venv may not match the Python running on
    the host it is being installed to. (ie. in the case of a Xenial
    repo container and a Trusty target host.)

    Change-Id: I82b835360afa2266429ae0468e7960fbee7c8c8a
    Partial-Bug: #1637509

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to openstack-ansible-os_swift (master)

Reviewed: https://review.openstack.org/398088
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_swift/commit/?id=37e77bbd50f7abc773b1b9eb8b0fe1f145ae777f
Submitter: Jenkins
Branch: master

commit 37e77bbd50f7abc773b1b9eb8b0fe1f145ae777f
Author: Logan V <email address hidden>
Date: Tue Nov 15 22:15:24 2016 -0600

    Reinitialize venv upon install

    Reinitializes (copies python, etc binaries) into the venv when
    dropping a new venv into place. This is needed because the Python
    binary packaged with the venv may not match the Python running on
    the host it is being installed to. (ie. in the case of a Xenial
    repo container and a Trusty target host.)

    Change-Id: Ibb4ea98b56a5c9e7b1f4cc4ed75cd3bd9e29ada6
    Partial-Bug: #1637509

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to openstack-ansible-os_horizon (master)

Reviewed: https://review.openstack.org/398080
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_horizon/commit/?id=8bf2716a5373f04013e024c6c2d0bc3754538afb
Submitter: Jenkins
Branch: master

commit 8bf2716a5373f04013e024c6c2d0bc3754538afb
Author: Logan V <email address hidden>
Date: Tue Nov 15 22:15:23 2016 -0600

    Reinitialize venv upon install

    Reinitializes (copies python, etc binaries) into the venv when
    dropping a new venv into place. This is needed because the Python
    binary packaged with the venv may not match the Python running on
    the host it is being installed to. (ie. in the case of a Xenial
    repo container and a Trusty target host.)

    Change-Id: Ie4a58821381b166670cf4912fb47e7f2fe76077c
    Partial-Bug: #1637509

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to openstack-ansible-os_cinder (master)

Reviewed: https://review.openstack.org/398075
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_cinder/commit/?id=c1c86fd129241454174cceeb5a6da756fcf5be4d
Submitter: Jenkins
Branch: master

commit c1c86fd129241454174cceeb5a6da756fcf5be4d
Author: Logan V <email address hidden>
Date: Tue Nov 15 22:15:23 2016 -0600

    Reinitialize venv upon install

    Reinitializes (copies python, etc binaries) into the venv when
    dropping a new venv into place. This is needed because the Python
    binary packaged with the venv may not match the Python running on
    the host it is being installed to. (ie. in the case of a Xenial
    repo container and a Trusty target host.)

    Change-Id: Ic6c0efff4d9ac4b7616f558796cd211a04768a4c
    Partial-Bug: #1637509

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to openstack-ansible-os_keystone (master)

Reviewed: https://review.openstack.org/398082
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_keystone/commit/?id=68fd798f31a8d917f38dbeb9c3d3fc5327e175bf
Submitter: Jenkins
Branch: master

commit 68fd798f31a8d917f38dbeb9c3d3fc5327e175bf
Author: Logan V <email address hidden>
Date: Tue Nov 15 22:15:23 2016 -0600

    Reinitialize venv upon install

    Reinitializes (copies python, etc binaries) into the venv when
    dropping a new venv into place. This is needed because the Python
    binary packaged with the venv may not match the Python running on
    the host it is being installed to. (ie. in the case of a Xenial
    repo container and a Trusty target host.)

    Change-Id: Ib24917cf63cf0e6c7ffaf48dae15b0733b48cd04
    Partial-Bug: #1637509

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to openstack-ansible-os_glance (master)

Reviewed: https://review.openstack.org/398077
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_glance/commit/?id=584591ab13dc276dbcfc9670b2d395c7380de0b0
Submitter: Jenkins
Branch: master

commit 584591ab13dc276dbcfc9670b2d395c7380de0b0
Author: Logan V <email address hidden>
Date: Tue Nov 15 22:15:23 2016 -0600

    Reinitialize venv upon install

    Reinitializes (copies python, etc binaries) into the venv when
    dropping a new venv into place. This is needed because the Python
    binary packaged with the venv may not match the Python running on
    the host it is being installed to. (ie. in the case of a Xenial
    repo container and a Trusty target host.)

    Change-Id: I9bb7aa62d5e191eb6de6f5295d77c57a08b2562d
    Partial-Bug: #1637509

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to openstack-ansible-os_nova (master)

Reviewed: https://review.openstack.org/398085
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_nova/commit/?id=1e3090a5c85d448560ad2560974f93fbe7897cc7
Submitter: Jenkins
Branch: master

commit 1e3090a5c85d448560ad2560974f93fbe7897cc7
Author: Logan V <email address hidden>
Date: Tue Nov 15 22:15:23 2016 -0600

    Reinitialize venv upon install

    Reinitializes (copies python, etc binaries) into the venv when
    dropping a new venv into place. This is needed because the Python
    binary packaged with the venv may not match the Python running on
    the host it is being installed to. (ie. in the case of a Xenial
    repo container and a Trusty target host.)

    Change-Id: I2cb0114dccd964ba917e88a2951e52a0bd6c6688
    Partial-Bug: #1637509

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to openstack-ansible-os_sahara (master)

Reviewed: https://review.openstack.org/398087
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_sahara/commit/?id=46a3cb9a9d66271c579cc74302c09de878fb57a2
Submitter: Jenkins
Branch: master

commit 46a3cb9a9d66271c579cc74302c09de878fb57a2
Author: Logan V <email address hidden>
Date: Tue Nov 15 22:15:24 2016 -0600

    Reinitialize venv upon install

    Reinitializes (copies python, etc binaries) into the venv when
    dropping a new venv into place. This is needed because the Python
    binary packaged with the venv may not match the Python running on
    the host it is being installed to. (ie. in the case of a Xenial
    repo container and a Trusty target host.)

    Change-Id: Iec9b1be576a7e6e335deab6b199ff700e200f8e0
    Partial-Bug: #1637509

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to openstack-ansible-os_tempest (master)

Reviewed: https://review.openstack.org/398089
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_tempest/commit/?id=f73a8dc279f8ceea529085aae80fa1a4bfcbe7dd
Submitter: Jenkins
Branch: master

commit f73a8dc279f8ceea529085aae80fa1a4bfcbe7dd
Author: Logan V <email address hidden>
Date: Tue Nov 15 22:15:24 2016 -0600

    Reinitialize venv upon install

    Reinitializes (copies python, etc binaries) into the venv when
    dropping a new venv into place. This is needed because the Python
    binary packaged with the venv may not match the Python running on
    the host it is being installed to. (ie. in the case of a Xenial
    repo container and a Trusty target host.)

    Change-Id: I54feeb4a08c52ad59a2d8740b9696dd2417405ac
    Partial-Bug: #1637509

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to openstack-ansible-os_magnum (master)

Reviewed: https://review.openstack.org/398083
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_magnum/commit/?id=ba43654e711f1976975b63e35366a4af2a916ff4
Submitter: Jenkins
Branch: master

commit ba43654e711f1976975b63e35366a4af2a916ff4
Author: Logan V <email address hidden>
Date: Tue Nov 15 22:15:23 2016 -0600

    Reinitialize venv upon install

    Reinitializes (copies python, etc binaries) into the venv when
    dropping a new venv into place. This is needed because the Python
    binary packaged with the venv may not match the Python running on
    the host it is being installed to. (ie. in the case of a Xenial
    repo container and a Trusty target host.)

    Change-Id: Iaae7414d7764b4d09bc64c75d589bc5011909488
    Partial-Bug: #1637509

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to openstack-ansible-os_neutron (master)

Reviewed: https://review.openstack.org/398084
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_neutron/commit/?id=e7bcb312a881a0946957fcd1e3e65ca72b8952a7
Submitter: Jenkins
Branch: master

commit e7bcb312a881a0946957fcd1e3e65ca72b8952a7
Author: Logan V <email address hidden>
Date: Tue Nov 15 22:15:23 2016 -0600

    Reinitialize venv upon install

    Reinitializes (copies python, etc binaries) into the venv when
    dropping a new venv into place. This is needed because the Python
    binary packaged with the venv may not match the Python running on
    the host it is being installed to. (ie. in the case of a Xenial
    repo container and a Trusty target host.)

    Change-Id: I22dca862f88c38c15ca95b117a73f3368219b3cd
    Partial-Bug: #1637509

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to openstack-ansible-os_zaqar (master)

Reviewed: https://review.openstack.org/398214
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_zaqar/commit/?id=a713e95929083fddb611cc0727c16cea4f41c936
Submitter: Jenkins
Branch: master

commit a713e95929083fddb611cc0727c16cea4f41c936
Author: Jesse Pretorius <email address hidden>
Date: Wed Nov 16 09:14:46 2016 +0000

    Reinitialize venv upon install

    Reinitializes (copies python, etc binaries) into the venv when
    dropping a new venv into place. This is needed because the Python
    binary packaged with the venv may not match the Python running on
    the host it is being installed to. (ie. in the case of a Xenial
    repo container and a Trusty target host.)

    Change-Id: I4ea706ac12e37c42eec41d5d734ad95cdcef9e58
    Partial-Bug: #1637509

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to openstack-ansible-os_cloudkitty (master)

Reviewed: https://review.openstack.org/398211
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_cloudkitty/commit/?id=f069211ece48acf455c0a369158c7556fbd06852
Submitter: Jenkins
Branch: master

commit f069211ece48acf455c0a369158c7556fbd06852
Author: Jesse Pretorius <email address hidden>
Date: Wed Nov 16 09:14:16 2016 +0000

    Reinitialize venv upon install

    Reinitializes (copies python, etc binaries) into the venv when
    dropping a new venv into place. This is needed because the Python
    binary packaged with the venv may not match the Python running on
    the host it is being installed to. (ie. in the case of a Xenial
    repo container and a Trusty target host.)

    Change-Id: Ie87ebd7aefaf7117e8fbd9711e887233eec8ff1c
    Partial-Bug: #1637509

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to openstack-ansible-os_watcher (master)

Reviewed: https://review.openstack.org/398213
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_watcher/commit/?id=28c8fda0495fbde39045b192f495858725798d7a
Submitter: Jenkins
Branch: master

commit 28c8fda0495fbde39045b192f495858725798d7a
Author: Jesse Pretorius <email address hidden>
Date: Wed Nov 16 09:14:36 2016 +0000

    Reinitialize venv upon install

    Reinitializes (copies python, etc binaries) into the venv when
    dropping a new venv into place. This is needed because the Python
    binary packaged with the venv may not match the Python running on
    the host it is being installed to. (ie. in the case of a Xenial
    repo container and a Trusty target host.)

    Change-Id: I791eddf84e91773042b0f8c956c9884e97add591
    Partial-Bug: #1637509

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to openstack-ansible-os_neutron (stable/newton)

Fix proposed to branch: stable/newton
Review: https://review.openstack.org/398815

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to openstack-ansible-os_magnum (stable/newton)

Fix proposed to branch: stable/newton
Review: https://review.openstack.org/398818

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to openstack-ansible-os_tempest (stable/newton)

Fix proposed to branch: stable/newton
Review: https://review.openstack.org/398820

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to openstack-ansible-os_sahara (stable/newton)

Fix proposed to branch: stable/newton
Review: https://review.openstack.org/398821

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to openstack-ansible-os_nova (stable/newton)

Fix proposed to branch: stable/newton
Review: https://review.openstack.org/398822

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to openstack-ansible-os_glance (stable/newton)

Fix proposed to branch: stable/newton
Review: https://review.openstack.org/398823

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to openstack-ansible-os_keystone (stable/newton)

Fix proposed to branch: stable/newton
Review: https://review.openstack.org/398824

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to openstack-ansible-os_cinder (stable/newton)

Fix proposed to branch: stable/newton
Review: https://review.openstack.org/398825

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to openstack-ansible-os_horizon (stable/newton)

Fix proposed to branch: stable/newton
Review: https://review.openstack.org/398826

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to openstack-ansible-os_swift (stable/newton)

Fix proposed to branch: stable/newton
Review: https://review.openstack.org/398828

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to openstack-ansible-os_gnocchi (stable/newton)

Fix proposed to branch: stable/newton
Review: https://review.openstack.org/398829

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to openstack-ansible-os_ceilometer (stable/newton)

Fix proposed to branch: stable/newton
Review: https://review.openstack.org/398830

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to openstack-ansible-os_heat (stable/newton)

Fix proposed to branch: stable/newton
Review: https://review.openstack.org/398831

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to openstack-ansible-os_rally (stable/newton)

Fix proposed to branch: stable/newton
Review: https://review.openstack.org/398832

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to openstack-ansible-os_aodh (stable/newton)

Fix proposed to branch: stable/newton
Review: https://review.openstack.org/398833

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to openstack-ansible-os_ironic (master)

Reviewed: https://review.openstack.org/398081
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_ironic/commit/?id=8a584e34856281915523fee47ad96e11190dcab2
Submitter: Jenkins
Branch: master

commit 8a584e34856281915523fee47ad96e11190dcab2
Author: Logan V <email address hidden>
Date: Tue Nov 15 22:15:23 2016 -0600

    Reinitialize venv upon install

    Reinitializes (copies python, etc binaries) into the venv when
    dropping a new venv into place. This is needed because the Python
    binary packaged with the venv may not match the Python running on
    the host it is being installed to. (ie. in the case of a Xenial
    repo container and a Trusty target host.)

    Change-Id: I8d0ac69bfca3757134086dbd0cb12be88473b6f8
    Partial-Bug: #1637509

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix proposed to openstack-ansible-os_ironic (stable/newton)

Fix proposed to branch: stable/newton
Review: https://review.openstack.org/398918

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to openstack-ansible-os_ironic (stable/newton)

Reviewed: https://review.openstack.org/398918
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_ironic/commit/?id=b016bebcee6e9a3bc022064b02ef89769c00b356
Submitter: Jenkins
Branch: stable/newton

commit b016bebcee6e9a3bc022064b02ef89769c00b356
Author: Logan V <email address hidden>
Date: Tue Nov 15 22:15:23 2016 -0600

    Reinitialize venv upon install

    Reinitializes (copies python, etc binaries) into the venv when
    dropping a new venv into place. This is needed because the Python
    binary packaged with the venv may not match the Python running on
    the host it is being installed to. (ie. in the case of a Xenial
    repo container and a Trusty target host.)

    Change-Id: I8d0ac69bfca3757134086dbd0cb12be88473b6f8
    Partial-Bug: #1637509
    (cherry picked from commit 8a584e34856281915523fee47ad96e11190dcab2)

tags: added: in-stable-newton
Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to openstack-ansible-os_heat (stable/newton)

Reviewed: https://review.openstack.org/398831
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_heat/commit/?id=c7f1bd183236d4eef35aeb66461585b8bc851e97
Submitter: Jenkins
Branch: stable/newton

commit c7f1bd183236d4eef35aeb66461585b8bc851e97
Author: Logan V <email address hidden>
Date: Tue Nov 15 22:15:23 2016 -0600

    Reinitialize venv upon install

    Reinitializes (copies python, etc binaries) into the venv when
    dropping a new venv into place. This is needed because the Python
    binary packaged with the venv may not match the Python running on
    the host it is being installed to. (ie. in the case of a Xenial
    repo container and a Trusty target host.)

    Change-Id: I06c58b7fee5cf5755b9490beb94c01dd7a8a3921
    Partial-Bug: #1637509
    (cherry picked from commit a420729b28c9794aaefc189e3f8e8dac3e8b0830)

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to openstack-ansible-os_rally (stable/newton)

Reviewed: https://review.openstack.org/398832
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_rally/commit/?id=c742619b746ee64f02c7caa4bab483c97f1ff16f
Submitter: Jenkins
Branch: stable/newton

commit c742619b746ee64f02c7caa4bab483c97f1ff16f
Author: Logan V <email address hidden>
Date: Tue Nov 15 22:15:24 2016 -0600

    Reinitialize venv upon install

    Reinitializes (copies python, etc binaries) into the venv when
    dropping a new venv into place. This is needed because the Python
    binary packaged with the venv may not match the Python running on
    the host it is being installed to. (ie. in the case of a Xenial
    repo container and a Trusty target host.)

    Change-Id: Ifbe100a7052e41a2e6e4c601287749e2a8dfd0e0
    Partial-Bug: #1637509
    (cherry picked from commit eedc4d372413731618c4f79c2605f1f0efb2be3a)

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to openstack-ansible-os_aodh (stable/newton)

Reviewed: https://review.openstack.org/398833
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_aodh/commit/?id=d243340f7e2f44409b7db3676e58483d9cf97e02
Submitter: Jenkins
Branch: stable/newton

commit d243340f7e2f44409b7db3676e58483d9cf97e02
Author: Logan V <email address hidden>
Date: Tue Nov 15 22:15:22 2016 -0600

    Reinitialize venv upon install

    Reinitializes (copies python, etc binaries) into the venv when
    dropping a new venv into place. This is needed because the Python
    binary packaged with the venv may not match the Python running on
    the host it is being installed to. (ie. in the case of a Xenial
    repo container and a Trusty target host.)

    Change-Id: I244b445af8fed00906e0b5c8840c49d0b7b7ab87
    Partial-Bug: #1637509
    (cherry picked from commit e12092e0940066f852883661db57fdf0483e7476)

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to openstack-ansible-os_horizon (stable/newton)

Reviewed: https://review.openstack.org/398826
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_horizon/commit/?id=0b044bc7a22b88d711f5256852e8d4260ee51146
Submitter: Jenkins
Branch: stable/newton

commit 0b044bc7a22b88d711f5256852e8d4260ee51146
Author: Logan V <email address hidden>
Date: Tue Nov 15 22:15:23 2016 -0600

    Reinitialize venv upon install

    Reinitializes (copies python, etc binaries) into the venv when
    dropping a new venv into place. This is needed because the Python
    binary packaged with the venv may not match the Python running on
    the host it is being installed to. (ie. in the case of a Xenial
    repo container and a Trusty target host.)

    Change-Id: Ie4a58821381b166670cf4912fb47e7f2fe76077c
    Partial-Bug: #1637509
    (cherry picked from commit 8bf2716a5373f04013e024c6c2d0bc3754538afb)

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to openstack-ansible-os_gnocchi (stable/newton)

Reviewed: https://review.openstack.org/398829
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_gnocchi/commit/?id=8006033508c66b6a62493b28057e5c54ae550cf9
Submitter: Jenkins
Branch: stable/newton

commit 8006033508c66b6a62493b28057e5c54ae550cf9
Author: Logan V <email address hidden>
Date: Tue Nov 15 22:15:23 2016 -0600

    Reinitialize venv upon install

    Reinitializes (copies python, etc binaries) into the venv when
    dropping a new venv into place. This is needed because the Python
    binary packaged with the venv may not match the Python running on
    the host it is being installed to. (ie. in the case of a Xenial
    repo container and a Trusty target host.)

    Change-Id: I466662705ce7f3bf7ae12cd339040870fd8479de
    Partial-Bug: #1637509
    (cherry picked from commit cc29921ae8591a25517a50134052a9441de7c890)

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to openstack-ansible-os_sahara (stable/newton)

Reviewed: https://review.openstack.org/398821
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_sahara/commit/?id=59837493e3cbb27a146b3dcf957a2e8f33a1e2a3
Submitter: Jenkins
Branch: stable/newton

commit 59837493e3cbb27a146b3dcf957a2e8f33a1e2a3
Author: Logan V <email address hidden>
Date: Tue Nov 15 22:15:24 2016 -0600

    Reinitialize venv upon install

    Reinitializes (copies python, etc binaries) into the venv when
    dropping a new venv into place. This is needed because the Python
    binary packaged with the venv may not match the Python running on
    the host it is being installed to. (ie. in the case of a Xenial
    repo container and a Trusty target host.)

    Change-Id: Iec9b1be576a7e6e335deab6b199ff700e200f8e0
    Partial-Bug: #1637509
    (cherry picked from commit 46a3cb9a9d66271c579cc74302c09de878fb57a2)

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to openstack-ansible-os_swift (stable/newton)

Reviewed: https://review.openstack.org/398828
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_swift/commit/?id=3cc2f590ff9683ebcde5694b8e80c6c1a710b092
Submitter: Jenkins
Branch: stable/newton

commit 3cc2f590ff9683ebcde5694b8e80c6c1a710b092
Author: Logan V <email address hidden>
Date: Tue Nov 15 22:15:24 2016 -0600

    Reinitialize venv upon install

    Reinitializes (copies python, etc binaries) into the venv when
    dropping a new venv into place. This is needed because the Python
    binary packaged with the venv may not match the Python running on
    the host it is being installed to. (ie. in the case of a Xenial
    repo container and a Trusty target host.)

    Change-Id: Ibb4ea98b56a5c9e7b1f4cc4ed75cd3bd9e29ada6
    Partial-Bug: #1637509
    (cherry picked from commit 37e77bbd50f7abc773b1b9eb8b0fe1f145ae777f)

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to openstack-ansible-os_glance (stable/newton)

Reviewed: https://review.openstack.org/398823
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_glance/commit/?id=79437cefd1382cc18825eff15d853336ea3d7b97
Submitter: Jenkins
Branch: stable/newton

commit 79437cefd1382cc18825eff15d853336ea3d7b97
Author: Logan V <email address hidden>
Date: Tue Nov 15 22:15:23 2016 -0600

    Reinitialize venv upon install

    Reinitializes (copies python, etc binaries) into the venv when
    dropping a new venv into place. This is needed because the Python
    binary packaged with the venv may not match the Python running on
    the host it is being installed to. (ie. in the case of a Xenial
    repo container and a Trusty target host.)

    Change-Id: I9bb7aa62d5e191eb6de6f5295d77c57a08b2562d
    Partial-Bug: #1637509
    (cherry picked from commit 584591ab13dc276dbcfc9670b2d395c7380de0b0)

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to openstack-ansible-os_ceilometer (stable/newton)

Reviewed: https://review.openstack.org/398830
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_ceilometer/commit/?id=fcc50006e726462add398ee2b86734d3d812032a
Submitter: Jenkins
Branch: stable/newton

commit fcc50006e726462add398ee2b86734d3d812032a
Author: Logan V <email address hidden>
Date: Tue Nov 15 22:15:23 2016 -0600

    Reinitialize venv upon install

    Reinitializes (copies python, etc binaries) into the venv when
    dropping a new venv into place. This is needed because the Python
    binary packaged with the venv may not match the Python running on
    the host it is being installed to. (ie. in the case of a Xenial
    repo container and a Trusty target host.)

    Change-Id: Ic49729f7e4f4b94311e5264efd49b2574a71b90b
    Partial-Bug: #1637509
    (cherry picked from commit 2951230035c61b01e27998918f390c3ecedd5542)

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to openstack-ansible-os_cinder (stable/newton)

Reviewed: https://review.openstack.org/398825
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_cinder/commit/?id=9727af937fc90887913b17dc60f22d7f168f0a11
Submitter: Jenkins
Branch: stable/newton

commit 9727af937fc90887913b17dc60f22d7f168f0a11
Author: Logan V <email address hidden>
Date: Tue Nov 15 22:15:23 2016 -0600

    Reinitialize venv upon install

    Reinitializes (copies python, etc binaries) into the venv when
    dropping a new venv into place. This is needed because the Python
    binary packaged with the venv may not match the Python running on
    the host it is being installed to. (ie. in the case of a Xenial
    repo container and a Trusty target host.)

    Change-Id: Ic6c0efff4d9ac4b7616f558796cd211a04768a4c
    Partial-Bug: #1637509
    (cherry picked from commit c1c86fd129241454174cceeb5a6da756fcf5be4d)

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to openstack-ansible-os_tempest (stable/newton)

Reviewed: https://review.openstack.org/398820
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_tempest/commit/?id=8ced003c0fb5da4e8936823b24debe4a0bc0e358
Submitter: Jenkins
Branch: stable/newton

commit 8ced003c0fb5da4e8936823b24debe4a0bc0e358
Author: Logan V <email address hidden>
Date: Tue Nov 15 22:15:24 2016 -0600

    Reinitialize venv upon install

    Reinitializes (copies python, etc binaries) into the venv when
    dropping a new venv into place. This is needed because the Python
    binary packaged with the venv may not match the Python running on
    the host it is being installed to. (ie. in the case of a Xenial
    repo container and a Trusty target host.)

    Change-Id: I54feeb4a08c52ad59a2d8740b9696dd2417405ac
    Partial-Bug: #1637509
    (cherry picked from commit f73a8dc279f8ceea529085aae80fa1a4bfcbe7dd)

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to openstack-ansible-os_nova (stable/newton)

Reviewed: https://review.openstack.org/398822
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_nova/commit/?id=9c11bda5a309ca6a22d56a8c73a0065830368bae
Submitter: Jenkins
Branch: stable/newton

commit 9c11bda5a309ca6a22d56a8c73a0065830368bae
Author: Logan V <email address hidden>
Date: Tue Nov 15 22:15:23 2016 -0600

    Reinitialize venv upon install

    Reinitializes (copies python, etc binaries) into the venv when
    dropping a new venv into place. This is needed because the Python
    binary packaged with the venv may not match the Python running on
    the host it is being installed to. (ie. in the case of a Xenial
    repo container and a Trusty target host.)

    Change-Id: I2cb0114dccd964ba917e88a2951e52a0bd6c6688
    Partial-Bug: #1637509
    (cherry picked from commit 1e3090a5c85d448560ad2560974f93fbe7897cc7)

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to openstack-ansible-os_magnum (stable/newton)

Reviewed: https://review.openstack.org/398818
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_magnum/commit/?id=48fc4699ab61c14aa8ad006268d37fcd71b69656
Submitter: Jenkins
Branch: stable/newton

commit 48fc4699ab61c14aa8ad006268d37fcd71b69656
Author: Logan V <email address hidden>
Date: Tue Nov 15 22:15:23 2016 -0600

    Reinitialize venv upon install

    Reinitializes (copies python, etc binaries) into the venv when
    dropping a new venv into place. This is needed because the Python
    binary packaged with the venv may not match the Python running on
    the host it is being installed to. (ie. in the case of a Xenial
    repo container and a Trusty target host.)

    Change-Id: Iaae7414d7764b4d09bc64c75d589bc5011909488
    Partial-Bug: #1637509
    (cherry picked from commit ba43654e711f1976975b63e35366a4af2a916ff4)

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to openstack-ansible-os_keystone (stable/newton)

Reviewed: https://review.openstack.org/398824
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_keystone/commit/?id=f4eabced3e96187bf5a3ffebaac4a14d15f30619
Submitter: Jenkins
Branch: stable/newton

commit f4eabced3e96187bf5a3ffebaac4a14d15f30619
Author: Logan V <email address hidden>
Date: Tue Nov 15 22:15:23 2016 -0600

    Reinitialize venv upon install

    Reinitializes (copies python, etc binaries) into the venv when
    dropping a new venv into place. This is needed because the Python
    binary packaged with the venv may not match the Python running on
    the host it is being installed to. (ie. in the case of a Xenial
    repo container and a Trusty target host.)

    Change-Id: Ib24917cf63cf0e6c7ffaf48dae15b0733b48cd04
    Partial-Bug: #1637509
    (cherry picked from commit 68fd798f31a8d917f38dbeb9c3d3fc5327e175bf)

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to openstack-ansible-os_neutron (stable/newton)

Reviewed: https://review.openstack.org/398815
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_neutron/commit/?id=0ab7928d3b02ba3933ee0cd8411cbb4cdb36a23c
Submitter: Jenkins
Branch: stable/newton

commit 0ab7928d3b02ba3933ee0cd8411cbb4cdb36a23c
Author: Logan V <email address hidden>
Date: Tue Nov 15 22:15:23 2016 -0600

    Reinitialize venv upon install

    Reinitializes (copies python, etc binaries) into the venv when
    dropping a new venv into place. This is needed because the Python
    binary packaged with the venv may not match the Python running on
    the host it is being installed to. (ie. in the case of a Xenial
    repo container and a Trusty target host.)

    Change-Id: I22dca862f88c38c15ca95b117a73f3368219b3cd
    Partial-Bug: #1637509
    (cherry picked from commit e7bcb312a881a0946957fcd1e3e65ca72b8952a7)

Changed in openstack-ansible:
status: In Progress → Fix Released
Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix proposed to openstack-ansible-os_keystone (master)

Related fix proposed to branch: master
Review: https://review.openstack.org/402212

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix proposed to openstack-ansible-os_neutron (master)

Related fix proposed to branch: master
Review: https://review.openstack.org/403688

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix proposed to openstack-ansible-os_nova (master)

Related fix proposed to branch: master
Review: https://review.openstack.org/403692

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix proposed to openstack-ansible-os_tempest (master)

Related fix proposed to branch: master
Review: https://review.openstack.org/403695

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix proposed to openstack-ansible-os_cinder (master)

Related fix proposed to branch: master
Review: https://review.openstack.org/403696

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix proposed to openstack-ansible-os_ceilometer (master)

Related fix proposed to branch: master
Review: https://review.openstack.org/403699

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix proposed to openstack-ansible-os_glance (master)

Related fix proposed to branch: master
Review: https://review.openstack.org/403701

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix proposed to openstack-ansible-os_swift (master)

Related fix proposed to branch: master
Review: https://review.openstack.org/403704

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix proposed to openstack-ansible-os_gnocchi (master)

Related fix proposed to branch: master
Review: https://review.openstack.org/403707

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix proposed to openstack-ansible-os_horizon (master)

Related fix proposed to branch: master
Review: https://review.openstack.org/403709

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix proposed to openstack-ansible-os_aodh (master)

Related fix proposed to branch: master
Review: https://review.openstack.org/403710

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix proposed to openstack-ansible-os_heat (master)

Related fix proposed to branch: master
Review: https://review.openstack.org/403711

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix proposed to openstack-ansible-os_ironic (master)

Related fix proposed to branch: master
Review: https://review.openstack.org/403712

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix proposed to openstack-ansible-os_rally (master)

Related fix proposed to branch: master
Review: https://review.openstack.org/403714

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix proposed to openstack-ansible-os_magnum (master)

Related fix proposed to branch: master
Review: https://review.openstack.org/403715

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix proposed to openstack-ansible-os_sahara (master)

Related fix proposed to branch: master
Review: https://review.openstack.org/403717

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix merged to openstack-ansible-os_gnocchi (master)

Reviewed: https://review.openstack.org/403707
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_gnocchi/commit/?id=464be72dea699cde64936ba6a41f7d176ecdbe45
Submitter: Jenkins
Branch: master

commit 464be72dea699cde64936ba6a41f7d176ecdbe45
Author: Marc Gariepy <email address hidden>
Date: Mon Nov 28 08:46:04 2016 -0500

    Fix virtualenv-tools issue

    please see https://github.com/fireteam/virtualenv-tools/issues/5

    This make installation of the virtualenv impossible on CentOS7 since
    you endup with python > python2.7 and python2.7 > python

    lrwxrwxrwx. 1 root root 9 Nov 24 20:49 python -> python2.7
    lrwxrwxrwx. 1 root root 6 Nov 14 20:03 python2 -> python
    lrwxrwxrwx. 1 root root 6 Nov 14 20:03 python2.7 -> python

    Change-Id: I8f6d4e1f8fc3010e333128d17eef1fc789ad5af5
    Related-Bug: #1637509
    Partial-Bug: #1644629

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix merged to openstack-ansible-os_rally (master)

Reviewed: https://review.openstack.org/403714
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_rally/commit/?id=f76966a25fb5b522e0d55659ebffd57b386c8d30
Submitter: Jenkins
Branch: master

commit f76966a25fb5b522e0d55659ebffd57b386c8d30
Author: Marc Gariepy <email address hidden>
Date: Mon Nov 28 08:56:39 2016 -0500

    Fix virtualenv-tools issue

    please see https://github.com/fireteam/virtualenv-tools/issues/5

    This make installation of the virtualenv impossible on CentOS7 since
    you endup with python > python2.7 and python2.7 > python

    lrwxrwxrwx. 1 root root 9 Nov 24 20:49 python -> python2.7
    lrwxrwxrwx. 1 root root 6 Nov 14 20:03 python2 -> python
    lrwxrwxrwx. 1 root root 6 Nov 14 20:03 python2.7 -> python

    Change-Id: I81d290d686582b23067e519285d27b9d4855c9e1
    Related-Bug: #1637509
    Partial-Bug: #1644629

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix merged to openstack-ansible-os_heat (master)

Reviewed: https://review.openstack.org/403711
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_heat/commit/?id=d792666115f5bb423563f249822ac1d212016ae0
Submitter: Jenkins
Branch: master

commit d792666115f5bb423563f249822ac1d212016ae0
Author: Marc Gariepy <email address hidden>
Date: Mon Nov 28 08:51:33 2016 -0500

    Fix virtualenv-tools issue

    please see https://github.com/fireteam/virtualenv-tools/issues/5

    This make installation of the virtualenv impossible on CentOS7 since
    you endup with python > python2.7 and python2.7 > python

    lrwxrwxrwx. 1 root root 9 Nov 24 20:49 python -> python2.7
    lrwxrwxrwx. 1 root root 6 Nov 14 20:03 python2 -> python
    lrwxrwxrwx. 1 root root 6 Nov 14 20:03 python2.7 -> python

    Change-Id: Iba92168bfdec23218bcaf7fcdf460c8f2ed95d48
    Related-Bug: #1637509
    Partial-Bug: #1644629

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix merged to openstack-ansible-os_horizon (master)

Reviewed: https://review.openstack.org/403709
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_horizon/commit/?id=454b933b6d50d0a03ff3193abf7e5f56619d5d1a
Submitter: Jenkins
Branch: master

commit 454b933b6d50d0a03ff3193abf7e5f56619d5d1a
Author: Marc Gariepy <email address hidden>
Date: Mon Nov 28 08:47:45 2016 -0500

    Fix virtualenv-tools issue

    please see https://github.com/fireteam/virtualenv-tools/issues/5

    This make installation of the virtualenv impossible on CentOS7 since
    you endup with python > python2.7 and python2.7 > python

    lrwxrwxrwx. 1 root root 9 Nov 24 20:49 python -> python2.7
    lrwxrwxrwx. 1 root root 6 Nov 14 20:03 python2 -> python
    lrwxrwxrwx. 1 root root 6 Nov 14 20:03 python2.7 -> python

    Change-Id: Id96a35e1c7c3bc200e7fa006352159d377823f4e
    Related-Bug: #1637509
    Partial-Bug: #1644629

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix merged to openstack-ansible-os_aodh (master)

Reviewed: https://review.openstack.org/403710
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_aodh/commit/?id=84f2af81327981e8bceb7dc9f10a1055a3bb792c
Submitter: Jenkins
Branch: master

commit 84f2af81327981e8bceb7dc9f10a1055a3bb792c
Author: Marc Gariepy <email address hidden>
Date: Mon Nov 28 08:50:01 2016 -0500

    Fix virtualenv-tools issue

    please see https://github.com/fireteam/virtualenv-tools/issues/5

    This make installation of the virtualenv impossible on CentOS7 since
    you endup with python > python2.7 and python2.7 > python

    lrwxrwxrwx. 1 root root 9 Nov 24 20:49 python -> python2.7
    lrwxrwxrwx. 1 root root 6 Nov 14 20:03 python2 -> python
    lrwxrwxrwx. 1 root root 6 Nov 14 20:03 python2.7 -> python

    Change-Id: Id7a1d25732de7d6c9001a5ef3bcce7ae02da5350
    Related-Bug: #1637509
    Partial-Bug: #1644629

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix merged to openstack-ansible-os_sahara (master)

Reviewed: https://review.openstack.org/403717
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_sahara/commit/?id=d0c3f3d0083cc6d97c6e60e09b44fd3e22e99bf2
Submitter: Jenkins
Branch: master

commit d0c3f3d0083cc6d97c6e60e09b44fd3e22e99bf2
Author: Marc Gariepy <email address hidden>
Date: Mon Nov 28 08:59:51 2016 -0500

    Fix virtualenv-tools issue

    please see https://github.com/fireteam/virtualenv-tools/issues/5

    This make installation of the virtualenv impossible on CentOS7 since
    you endup with python > python2.7 and python2.7 > python

    lrwxrwxrwx. 1 root root 9 Nov 24 20:49 python -> python2.7
    lrwxrwxrwx. 1 root root 6 Nov 14 20:03 python2 -> python
    lrwxrwxrwx. 1 root root 6 Nov 14 20:03 python2.7 -> python

    Change-Id: I4ed8cbfb69d1ade77fe545a701d0dd3a5e21e913
    Related-Bug: #1637509
    Partial-Bug: #1644629

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix merged to openstack-ansible-os_ceilometer (master)

Reviewed: https://review.openstack.org/403699
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_ceilometer/commit/?id=124415972595ab2d9b3c50320bfe19161cc16599
Submitter: Jenkins
Branch: master

commit 124415972595ab2d9b3c50320bfe19161cc16599
Author: Marc Gariepy <email address hidden>
Date: Mon Nov 28 08:31:27 2016 -0500

    Fix virtualenv-tools issue

    please see https://github.com/fireteam/virtualenv-tools/issues/5

    This make installation of the virtualenv impossible on CentOS7 since
    you endup with python > python2.7 and python2.7 > python

    lrwxrwxrwx. 1 root root 9 Nov 24 20:49 python -> python2.7
    lrwxrwxrwx. 1 root root 6 Nov 14 20:03 python2 -> python
    lrwxrwxrwx. 1 root root 6 Nov 14 20:03 python2.7 -> python

    Change-Id: I101fe7082cac887dc4299a0f5ec92bdce626bb79
    Related-Bug: #1637509
    Partial-Bug: #1644629

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix merged to openstack-ansible-os_ironic (master)

Reviewed: https://review.openstack.org/403712
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_ironic/commit/?id=40f6211041095a412acb25438cc7aa9536a55884
Submitter: Jenkins
Branch: master

commit 40f6211041095a412acb25438cc7aa9536a55884
Author: Marc Gariepy <email address hidden>
Date: Mon Nov 28 08:52:58 2016 -0500

    Fix virtualenv-tools issue

    please see https://github.com/fireteam/virtualenv-tools/issues/5

    This make installation of the virtualenv impossible on CentOS7 since
    you endup with python > python2.7 and python2.7 > python

    lrwxrwxrwx. 1 root root 9 Nov 24 20:49 python -> python2.7
    lrwxrwxrwx. 1 root root 6 Nov 14 20:03 python2 -> python
    lrwxrwxrwx. 1 root root 6 Nov 14 20:03 python2.7 -> python

    Change-Id: I87628ad30523e34bc3fa5abd454860d90663737f
    Related-Bug: #1637509
    Partial-Bug: #1644629

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix merged to openstack-ansible-os_nova (master)

Reviewed: https://review.openstack.org/403692
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_nova/commit/?id=2c875dc440e5db77c0472b024e138766ce887423
Submitter: Jenkins
Branch: master

commit 2c875dc440e5db77c0472b024e138766ce887423
Author: Marc Gariepy <email address hidden>
Date: Mon Nov 28 08:12:43 2016 -0500

    Fix virtualenv-tools issue

    please see https://github.com/fireteam/virtualenv-tools/issues/5

    This make installation of the virtualenv impossible on CentOS7 since
    you endup with python > python2.7 and python2.7 > python

    lrwxrwxrwx. 1 root root 9 Nov 24 20:49 python -> python2.7
    lrwxrwxrwx. 1 root root 6 Nov 14 20:03 python2 -> python
    lrwxrwxrwx. 1 root root 6 Nov 14 20:03 python2.7 -> python

    Change-Id: I2f36bcf543647944b51dbf854d776dab98fee69c
    Related-Bug: #1637509
    Partial-Bug: #1644629

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix merged to openstack-ansible-os_magnum (master)

Reviewed: https://review.openstack.org/403715
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_magnum/commit/?id=1d4b32532a696fc67ac0dcce9f18a3e1a415a9a5
Submitter: Jenkins
Branch: master

commit 1d4b32532a696fc67ac0dcce9f18a3e1a415a9a5
Author: Marc Gariepy <email address hidden>
Date: Mon Nov 28 08:58:42 2016 -0500

    Fix virtualenv-tools issue

    please see https://github.com/fireteam/virtualenv-tools/issues/5

    This make installation of the virtualenv impossible on CentOS7 since
    you endup with python > python2.7 and python2.7 > python

    lrwxrwxrwx. 1 root root 9 Nov 24 20:49 python -> python2.7
    lrwxrwxrwx. 1 root root 6 Nov 14 20:03 python2 -> python
    lrwxrwxrwx. 1 root root 6 Nov 14 20:03 python2.7 -> python

    Change-Id: Ieb97e0b245b870c0b5b42bf9b52e7400a65e38ad
    Related-Bug: #1637509
    Partial-Bug: #1644629

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix merged to openstack-ansible-os_tempest (master)

Reviewed: https://review.openstack.org/403695
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_tempest/commit/?id=ec663f19f9f04414bbc549c9a5c5c4c9edc612ee
Submitter: Jenkins
Branch: master

commit ec663f19f9f04414bbc549c9a5c5c4c9edc612ee
Author: Marc Gariepy <email address hidden>
Date: Mon Nov 28 08:25:38 2016 -0500

    Fix virtualenv-tools issue

    please see https://github.com/fireteam/virtualenv-tools/issues/5

    This make installation of the virtualenv impossible on CentOS7 since
    you endup with python > python2.7 and python2.7 > python

    lrwxrwxrwx. 1 root root 9 Nov 24 20:49 python -> python2.7
    lrwxrwxrwx. 1 root root 6 Nov 14 20:03 python2 -> python
    lrwxrwxrwx. 1 root root 6 Nov 14 20:03 python2.7 -> python

    Change-Id: I2d4d7c042c565984f3ead21e68d16e23e4c286b6
    Related-Bug: #1637509
    Partial-Bug: #1644629

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix merged to openstack-ansible-os_swift (master)

Reviewed: https://review.openstack.org/403704
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_swift/commit/?id=58b0b99cca80678afd851349a2f42ee9b4834e39
Submitter: Jenkins
Branch: master

commit 58b0b99cca80678afd851349a2f42ee9b4834e39
Author: Marc Gariepy <email address hidden>
Date: Mon Nov 28 08:42:51 2016 -0500

    Fix virtualenv-tools issue

    please see https://github.com/fireteam/virtualenv-tools/issues/5

    This make installation of the virtualenv impossible on CentOS7 since
    you endup with python > python2.7 and python2.7 > python

    lrwxrwxrwx. 1 root root 9 Nov 24 20:49 python -> python2.7
    lrwxrwxrwx. 1 root root 6 Nov 14 20:03 python2 -> python
    lrwxrwxrwx. 1 root root 6 Nov 14 20:03 python2.7 -> python

    Change-Id: I8f7d772d51c6407207cbc8d6a9eab30939eccfde
    Related-Bug: #1637509
    Partial-Bug: #1644629

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix merged to openstack-ansible-os_neutron (master)

Reviewed: https://review.openstack.org/403688
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_neutron/commit/?id=9bd5175055d30ff138ea103297471e7f4290f052
Submitter: Jenkins
Branch: master

commit 9bd5175055d30ff138ea103297471e7f4290f052
Author: Marc Gariepy <email address hidden>
Date: Mon Nov 28 08:09:42 2016 -0500

    Fix virtualenv-tools issue

    please see https://github.com/fireteam/virtualenv-tools/issues/5

    This make installation of the virtualenv impossible on CentOS7 since
    you endup with python > python2.7 and python2.7 > python

    lrwxrwxrwx. 1 root root 9 Nov 24 20:49 python -> python2.7
    lrwxrwxrwx. 1 root root 6 Nov 14 20:03 python2 -> python
    lrwxrwxrwx. 1 root root 6 Nov 14 20:03 python2.7 -> python

    Change-Id: I911f2a4de5b38d54bd7082fd2e8f2d66c2aa348a
    Related-Bug: #1637509
    Partial-Bug: #1644629

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix merged to openstack-ansible-os_glance (master)

Reviewed: https://review.openstack.org/403701
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_glance/commit/?id=a06e5244f30436675c597294c72b891cd6f8d1e1
Submitter: Jenkins
Branch: master

commit a06e5244f30436675c597294c72b891cd6f8d1e1
Author: Marc Gariepy <email address hidden>
Date: Mon Nov 28 08:38:02 2016 -0500

    Fix virtualenv-tools issue

    please see https://github.com/fireteam/virtualenv-tools/issues/5

    This make installation of the virtualenv impossible on CentOS7 since
    you endup with python > python2.7 and python2.7 > python

    lrwxrwxrwx. 1 root root 9 Nov 24 20:49 python -> python2.7
    lrwxrwxrwx. 1 root root 6 Nov 14 20:03 python2 -> python
    lrwxrwxrwx. 1 root root 6 Nov 14 20:03 python2.7 -> python

    Change-Id: I2377dc89e7220e653c0b9a3aab7e882cf2324f2e
    Related-Bug: #1637509
    Partial-Bug: #1644629

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix merged to openstack-ansible-os_cinder (master)

Reviewed: https://review.openstack.org/403696
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_cinder/commit/?id=679b89f307c8af9412c5ed122a75bd9ebdb63a3a
Submitter: Jenkins
Branch: master

commit 679b89f307c8af9412c5ed122a75bd9ebdb63a3a
Author: Marc Gariepy <email address hidden>
Date: Mon Nov 28 08:28:48 2016 -0500

    Fix virtualenv-tools issue

    please see https://github.com/fireteam/virtualenv-tools/issues/5

    This make installation of the virtualenv impossible on CentOS7 since
    you endup with python > python2.7 and python2.7 > python

    lrwxrwxrwx. 1 root root 9 Nov 24 20:49 python -> python2.7
    lrwxrwxrwx. 1 root root 6 Nov 14 20:03 python2 -> python
    lrwxrwxrwx. 1 root root 6 Nov 14 20:03 python2.7 -> python

    Change-Id: Ic6c005bc55018898830bfc937829c6fade72e670
    Related-Bug: #1637509
    Partial-Bug: #1644629

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix proposed to openstack-ansible-os_keystone (master)

Related fix proposed to branch: master
Review: https://review.openstack.org/493566

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix proposed to openstack-ansible-os_aodh (master)

Related fix proposed to branch: master
Review: https://review.openstack.org/493567

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix proposed to openstack-ansible-os_ceilometer (master)

Related fix proposed to branch: master
Review: https://review.openstack.org/493569

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix proposed to openstack-ansible-os_cinder (master)

Related fix proposed to branch: master
Review: https://review.openstack.org/493578

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix proposed to openstack-ansible-os_designate (master)

Related fix proposed to branch: master
Review: https://review.openstack.org/493581

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix merged to openstack-ansible-os_ceilometer (master)

Reviewed: https://review.openstack.org/493569
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_ceilometer/commit/?id=f2653a64f8a598a8e555a7b36f006cf4967082ec
Submitter: Jenkins
Branch: master

commit f2653a64f8a598a8e555a7b36f006cf4967082ec
Author: Markos Chandras <email address hidden>
Date: Mon Aug 14 15:47:20 2017 +0100

    tasks: ceilometer_install: Fix virtualenv-tools issue on openSUSE

    This is similar to I101fe7082cac887dc4299a0f5ec92bdce626bb79

    openSUSE is also suffering from the same virtualenv-tools issue so
    we need to remove the existing python-2.7 symlink.

    Link: https://github.com/fireteam/virtualenv-tools/issues/5
    Related-Bug: #1637509
    Partial-Bug: #1644629
    Change-Id: I780960418ff9da7cac2f8716e88d2d8fb7bdb1c6

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix proposed to openstack-ansible-os_gnocchi (master)

Related fix proposed to branch: master
Review: https://review.openstack.org/493740

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix proposed to openstack-ansible-os_heat (master)

Related fix proposed to branch: master
Review: https://review.openstack.org/493741

Revision history for this message
OpenStack Infra (hudson-openstack) wrote :

Related fix proposed to branch: master
Review: https://review.openstack.org/493742

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Change abandoned on openstack-ansible-os_heat (master)

Change abandoned by Markos Chandras (hwoarang) (<email address hidden>) on branch: master
Review: https://review.openstack.org/493741

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix proposed to openstack-ansible-os_horizon (master)

Related fix proposed to branch: master
Review: https://review.openstack.org/493743

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix proposed to openstack-ansible-os_ironic (master)

Related fix proposed to branch: master
Review: https://review.openstack.org/493744

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix proposed to openstack-ansible-os_neutron (master)

Related fix proposed to branch: master
Review: https://review.openstack.org/493745

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix proposed to openstack-ansible-os_nova (master)

Related fix proposed to branch: master
Review: https://review.openstack.org/493746

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix proposed to openstack-ansible-os_swift (master)

Related fix proposed to branch: master
Review: https://review.openstack.org/493747

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix proposed to openstack-ansible-os_tempest (master)

Related fix proposed to branch: master
Review: https://review.openstack.org/493748

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix merged to openstack-ansible-os_aodh (master)

Reviewed: https://review.openstack.org/493567
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_aodh/commit/?id=fbff0797b22ca02d2587b7745cff3306f2a21237
Submitter: Jenkins
Branch: master

commit fbff0797b22ca02d2587b7745cff3306f2a21237
Author: Markos Chandras <email address hidden>
Date: Mon Aug 14 15:39:00 2017 +0100

    tasks: aodh_install.yml: Fix virtualenv-tools issue on openSUSE

    This is similar to Id7a1d25732de7d6c9001a5ef3bcce7ae02da5350
    openSUSE is also suffering from the same virtualenv-tools issue so
    we need to remove the existing python-2.7 symlink.

    Link: https://github.com/fireteam/virtualenv-tools/issues/5
    Related-Bug: #1637509
    Partial-Bug: #1644629
    Change-Id: I1cf438ad20758ea386db1df9cf683952c4215799

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix merged to openstack-ansible-os_designate (master)

Reviewed: https://review.openstack.org/493581
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_designate/commit/?id=009078f5409b4e559f0ed0ae1cf8d78cf8319542
Submitter: Jenkins
Branch: master

commit 009078f5409b4e559f0ed0ae1cf8d78cf8319542
Author: Markos Chandras <email address hidden>
Date: Mon Aug 14 15:56:52 2017 +0100

    tasks: designate_install: Fix virtualenv-tools issue on openSUSE

    openSUSE is also suffering from the same virtualenv-tools issue so
    we need to remove the existing python-2.7 symlink.

    Link: https://github.com/fireteam/virtualenv-tools/issues/5
    Related-Bug: #1637509
    Partial-Bug: #1644629
    Change-Id: Idac8bc2e43d369876065d495ff42061f3619732c

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix merged to openstack-ansible-os_gnocchi (master)

Reviewed: https://review.openstack.org/493740
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_gnocchi/commit/?id=d51d3c7e34de35d87035b5158da1ad311ebd7660
Submitter: Jenkins
Branch: master

commit d51d3c7e34de35d87035b5158da1ad311ebd7660
Author: Markos Chandras <email address hidden>
Date: Tue Aug 15 05:56:07 2017 +0100

    tasks: gnocchi_install: Fix virtualenv-tools issue on openSUSE

    openSUSE is also suffering from the same virtualenv-tools issue so
    we need to remove the existing python-2.7 symlink.

    Link: https://github.com/fireteam/virtualenv-tools/issues/5
    Related-Bug: #1637509
    Partial-Bug: #1644629
    Change-Id: I242684d1f556927bd0967fff8cf8e692f7045a76

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix merged to openstack-ansible-os_heat (master)

Reviewed: https://review.openstack.org/493742
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_heat/commit/?id=bcb70190d17c54127187556662b11a4734e55272
Submitter: Jenkins
Branch: master

commit bcb70190d17c54127187556662b11a4734e55272
Author: Markos Chandras <email address hidden>
Date: Tue Aug 15 05:58:11 2017 +0100

    tasks: heat_install: Fix virtualenv-tools issue on openSUSE

    openSUSE is also suffering from the same virtualenv-tools issue so
    we need to remove the existing python-2.7 symlink.

    Link: https://github.com/fireteam/virtualenv-tools/issues/5
    Related-Bug: #1637509
    Partial-Bug: #1644629
    Change-Id: I628251e8729bd50035b13a11761872b23e001fc5

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix merged to openstack-ansible-os_ironic (master)

Reviewed: https://review.openstack.org/493744
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_ironic/commit/?id=f40e6a8e016711967395fd85a588a3cbd0227430
Submitter: Jenkins
Branch: master

commit f40e6a8e016711967395fd85a588a3cbd0227430
Author: Markos Chandras <email address hidden>
Date: Tue Aug 15 06:03:46 2017 +0100

    tasks: ironic_install: Fix virtualenv-tools issue on openSUSE

    openSUSE is also suffering from the same virtualenv-tools issue so
    we need to remove the existing python-2.7 symlink.

    Link: https://github.com/fireteam/virtualenv-tools/issues/5
    Related-Bug: #1637509
    Partial-Bug: #1644629
    Change-Id: I18d42e3ef0f6eca8e14128ad4fc8c3c8c46926e5

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix merged to openstack-ansible-os_tempest (master)

Reviewed: https://review.openstack.org/493748
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_tempest/commit/?id=41323fe2a5231cedb6dfdb4da960d86a8120705d
Submitter: Jenkins
Branch: master

commit 41323fe2a5231cedb6dfdb4da960d86a8120705d
Author: Markos Chandras <email address hidden>
Date: Tue Aug 15 06:11:59 2017 +0100

    tasks: tempest_install: Fix virtualenv-tools issue on openSUSE

    openSUSE is also suffering from the same virtualenv-tools issue so
    we need to remove the existing python-2.7 symlink.

    Link: https://github.com/fireteam/virtualenv-tools/issues/5
    Related-Bug: #1637509
    Partial-Bug: #1644629
    Change-Id: Ib9b830bf607dbdf0d40583eec35789e10f5a7a49

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix merged to openstack-ansible-os_nova (master)

Reviewed: https://review.openstack.org/493746
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_nova/commit/?id=42eaa8018bb1501faf160c53c36d56b2fd89c9aa
Submitter: Jenkins
Branch: master

commit 42eaa8018bb1501faf160c53c36d56b2fd89c9aa
Author: Markos Chandras <email address hidden>
Date: Tue Aug 15 06:08:07 2017 +0100

    tasks: nova_install: Fix virtualenv-tools issue on openSUSE

    openSUSE is also suffering from the same virtualenv-tools issue so
    we need to remove the existing python-2.7 symlink.

    Link: https://github.com/fireteam/virtualenv-tools/issues/5
    Related-Bug: #1637509
    Partial-Bug: #1644629
    Change-Id: I2cdd35843ee0d32a659a804c8a85b180c8db153e

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix merged to openstack-ansible-os_keystone (master)

Reviewed: https://review.openstack.org/493566
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_keystone/commit/?id=e4a2f0e4a7ab0378d1381e7a3368709401dc016a
Submitter: Jenkins
Branch: master

commit e4a2f0e4a7ab0378d1381e7a3368709401dc016a
Author: Markos Chandras <email address hidden>
Date: Mon Aug 14 15:32:06 2017 +0100

    tasks: keystone_install: Fix virtualenv-tools issue on openSUSE

    This is similar to I8a27bb268ea2e145ed113c652ab7846f6adc3f82

    openSUSE is also suffering from the same virtualenv-tools issue so
    we need to remove the existing python-2.7 symlink.

    Link: https://github.com/fireteam/virtualenv-tools/issues/5
    Related-Bug: #1637509
    Partial-Bug: #1644629
    Change-Id: I16ea455f8d9336237175e6c43f0b14713cf314d3

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix proposed to openstack-ansible-os_glance (master)

Related fix proposed to branch: master
Review: https://review.openstack.org/494175

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix merged to openstack-ansible-os_glance (master)

Reviewed: https://review.openstack.org/494175
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_glance/commit/?id=a6f93be5c1e5441788d3c7a1c5900aefafcbd4fe
Submitter: Jenkins
Branch: master

commit a6f93be5c1e5441788d3c7a1c5900aefafcbd4fe
Author: Markos Chandras <email address hidden>
Date: Wed Aug 16 12:33:57 2017 +0100

    tasks: glance_install: Fix virtualenv-tools issue on openSUSE

    openSUSE is also suffering from the same virtualenv-tools issue so
    we need to remove the existing python-2.7 symlink.

    Link: https://github.com/fireteam/virtualenv-tools/issues/5
    Related-Bug: #1637509
    Partial-Bug: #1644629
    Change-Id: Iff9ddc29903a278dac7ab941fe7bd5bae1702bb7

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix merged to openstack-ansible-os_horizon (master)

Reviewed: https://review.openstack.org/493743
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_horizon/commit/?id=91171e2be847beea02b6cfa9c27dc21e86e37a33
Submitter: Jenkins
Branch: master

commit 91171e2be847beea02b6cfa9c27dc21e86e37a33
Author: Markos Chandras <email address hidden>
Date: Tue Aug 15 06:00:02 2017 +0100

    tasks: horizon_install: Fix virtualenv-tools issue on openSUSE

    openSUSE is also suffering from the same virtualenv-tools issue so
    we need to remove the existing python-2.7 symlink.

    Link: https://github.com/fireteam/virtualenv-tools/issues/5
    Related-Bug: #1637509
    Partial-Bug: #1644629
    Change-Id: Ie3f4355eb53db563aaf5fa71d1ea9fb2ee5cfe32

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix proposed to openstack-ansible-os_neutron (master)

Related fix proposed to branch: master
Review: https://review.openstack.org/494408

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix merged to openstack-ansible-os_cinder (master)

Reviewed: https://review.openstack.org/493578
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_cinder/commit/?id=e1fd2e40e12168dca24e8b11bf8773a6593349ea
Submitter: Jenkins
Branch: master

commit e1fd2e40e12168dca24e8b11bf8773a6593349ea
Author: Markos Chandras <email address hidden>
Date: Mon Aug 14 15:53:49 2017 +0100

    tasks: cinder_install: Fix virtualenv-tools issue on openSUSE

    This is similar to Ic6c005bc55018898830bfc937829c6fade72e670

    openSUSE is also suffering from the same virtualenv-tools issue so
    we need to remove the existing python-2.7 symlink.

    Link: https://github.com/fireteam/virtualenv-tools/issues/5
    Related-Bug: #1637509
    Partial-Bug: #1644629
    Change-Id: Ib1b4313071c2442d1c320fb2eab5f4b072078960

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Change abandoned on openstack-ansible-os_neutron (master)

Change abandoned by Markos Chandras (hwoarang) (<email address hidden>) on branch: master
Review: https://review.openstack.org/494408

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix merged to openstack-ansible-os_swift (master)

Reviewed: https://review.openstack.org/493747
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_swift/commit/?id=546378a730ec2101385c2b323b01344b8f35b345
Submitter: Jenkins
Branch: master

commit 546378a730ec2101385c2b323b01344b8f35b345
Author: Markos Chandras <email address hidden>
Date: Tue Aug 15 06:10:22 2017 +0100

    tasks: swift_install: Fix virtualenv-tools issue on openSUSE

    openSUSE is also suffering from the same virtualenv-tools issue so
    we need to remove the existing python-2.7 symlink.

    Link: https://github.com/fireteam/virtualenv-tools/issues/5
    Related-Bug: #1637509
    Partial-Bug: #1644629
    Change-Id: I9011007d949ba4848c4e767b6cfab42e10eb1128

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix merged to openstack-ansible-os_neutron (master)

Reviewed: https://review.openstack.org/493745
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_neutron/commit/?id=23b9b6a393aa354556e6c51c4888e8a862bf5630
Submitter: Jenkins
Branch: master

commit 23b9b6a393aa354556e6c51c4888e8a862bf5630
Author: Markos Chandras <email address hidden>
Date: Tue Aug 15 06:06:19 2017 +0100

    tasks: neutron_install: Fix virtualenv-tools issue on openSUSE

    openSUSE is also suffering from the same virtualenv-tools issue so
    we need to remove the existing python-2.7 symlink.

    Link: https://github.com/fireteam/virtualenv-tools/issues/5
    Related-Bug: #1637509
    Partial-Bug: #1644629
    Change-Id: I49beaf3f686adf02b156cb3d1d51ca7aebab6f6f

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix proposed to openstack-ansible-os_horizon (stable/pike)

Related fix proposed to branch: stable/pike
Review: https://review.openstack.org/495358

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix proposed to openstack-ansible-os_heat (stable/pike)

Related fix proposed to branch: stable/pike
Review: https://review.openstack.org/495359

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix proposed to openstack-ansible-os_neutron (stable/pike)

Related fix proposed to branch: stable/pike
Review: https://review.openstack.org/495360

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix proposed to openstack-ansible-os_keystone (stable/pike)

Related fix proposed to branch: stable/pike
Review: https://review.openstack.org/495363

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix proposed to openstack-ansible-os_glance (stable/pike)

Related fix proposed to branch: stable/pike
Review: https://review.openstack.org/495364

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix proposed to openstack-ansible-os_cinder (stable/pike)

Related fix proposed to branch: stable/pike
Review: https://review.openstack.org/495365

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix merged to openstack-ansible-os_glance (stable/pike)

Reviewed: https://review.openstack.org/495364
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_glance/commit/?id=af22504fc86f0da6e23fb40618f238ba140d55d4
Submitter: Jenkins
Branch: stable/pike

commit af22504fc86f0da6e23fb40618f238ba140d55d4
Author: Markos Chandras <email address hidden>
Date: Wed Aug 16 12:33:57 2017 +0100

    tasks: glance_install: Fix virtualenv-tools issue on openSUSE

    openSUSE is also suffering from the same virtualenv-tools issue so
    we need to remove the existing python-2.7 symlink.

    Link: https://github.com/fireteam/virtualenv-tools/issues/5
    Related-Bug: #1637509
    Partial-Bug: #1644629
    Change-Id: Iff9ddc29903a278dac7ab941fe7bd5bae1702bb7
    (cherry picked from commit a6f93be5c1e5441788d3c7a1c5900aefafcbd4fe)

tags: added: in-stable-pike
Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix merged to openstack-ansible-os_heat (stable/pike)

Reviewed: https://review.openstack.org/495359
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_heat/commit/?id=e85e2cfac91ef94f6e145d25f6cba749048fab6e
Submitter: Jenkins
Branch: stable/pike

commit e85e2cfac91ef94f6e145d25f6cba749048fab6e
Author: Markos Chandras <email address hidden>
Date: Tue Aug 15 05:58:11 2017 +0100

    tasks: heat_install: Fix virtualenv-tools issue on openSUSE

    openSUSE is also suffering from the same virtualenv-tools issue so
    we need to remove the existing python-2.7 symlink.

    Link: https://github.com/fireteam/virtualenv-tools/issues/5
    Related-Bug: #1637509
    Partial-Bug: #1644629
    Change-Id: I628251e8729bd50035b13a11761872b23e001fc5
    (cherry picked from commit bcb70190d17c54127187556662b11a4734e55272)

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix merged to openstack-ansible-os_horizon (stable/pike)

Reviewed: https://review.openstack.org/495358
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_horizon/commit/?id=c7e1c7c9c42d2f86c5abd086d40b52e45a0d7ec8
Submitter: Jenkins
Branch: stable/pike

commit c7e1c7c9c42d2f86c5abd086d40b52e45a0d7ec8
Author: Markos Chandras <email address hidden>
Date: Tue Aug 15 06:00:02 2017 +0100

    tasks: horizon_install: Fix virtualenv-tools issue on openSUSE

    openSUSE is also suffering from the same virtualenv-tools issue so
    we need to remove the existing python-2.7 symlink.

    Link: https://github.com/fireteam/virtualenv-tools/issues/5
    Related-Bug: #1637509
    Partial-Bug: #1644629
    Change-Id: Ie3f4355eb53db563aaf5fa71d1ea9fb2ee5cfe32
    (cherry picked from commit 91171e2be847beea02b6cfa9c27dc21e86e37a33)

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix merged to openstack-ansible-os_cinder (stable/pike)

Reviewed: https://review.openstack.org/495365
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_cinder/commit/?id=eeb849e96155633e7a9769df6e22ceb5a584183e
Submitter: Jenkins
Branch: stable/pike

commit eeb849e96155633e7a9769df6e22ceb5a584183e
Author: Markos Chandras <email address hidden>
Date: Mon Aug 14 15:53:49 2017 +0100

    tasks: cinder_install: Fix virtualenv-tools issue on openSUSE

    This is similar to Ic6c005bc55018898830bfc937829c6fade72e670

    openSUSE is also suffering from the same virtualenv-tools issue so
    we need to remove the existing python-2.7 symlink.

    Link: https://github.com/fireteam/virtualenv-tools/issues/5
    Related-Bug: #1637509
    Partial-Bug: #1644629
    Change-Id: Ib1b4313071c2442d1c320fb2eab5f4b072078960
    (cherry picked from commit e1fd2e40e12168dca24e8b11bf8773a6593349ea)

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix merged to openstack-ansible-os_keystone (stable/pike)

Reviewed: https://review.openstack.org/495363
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_keystone/commit/?id=ce3ab6e98859819512be591d4b0615be1e9f1d3d
Submitter: Jenkins
Branch: stable/pike

commit ce3ab6e98859819512be591d4b0615be1e9f1d3d
Author: Markos Chandras <email address hidden>
Date: Mon Aug 14 15:32:06 2017 +0100

    tasks: keystone_install: Fix virtualenv-tools issue on openSUSE

    This is similar to I8a27bb268ea2e145ed113c652ab7846f6adc3f82

    openSUSE is also suffering from the same virtualenv-tools issue so
    we need to remove the existing python-2.7 symlink.

    Link: https://github.com/fireteam/virtualenv-tools/issues/5
    Related-Bug: #1637509
    Partial-Bug: #1644629
    Change-Id: I16ea455f8d9336237175e6c43f0b14713cf314d3
    (cherry picked from commit e4a2f0e4a7ab0378d1381e7a3368709401dc016a)

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix merged to openstack-ansible-os_neutron (stable/pike)

Reviewed: https://review.openstack.org/495360
Committed: https://git.openstack.org/cgit/openstack/openstack-ansible-os_neutron/commit/?id=4af7f635df6c28344f40cad4da4ac9a742b76ec3
Submitter: Jenkins
Branch: stable/pike

commit 4af7f635df6c28344f40cad4da4ac9a742b76ec3
Author: Markos Chandras <email address hidden>
Date: Tue Aug 15 06:06:19 2017 +0100

    tasks: neutron_install: Fix virtualenv-tools issue on openSUSE

    openSUSE is also suffering from the same virtualenv-tools issue so
    we need to remove the existing python-2.7 symlink.

    Link: https://github.com/fireteam/virtualenv-tools/issues/5
    Related-Bug: #1637509
    Partial-Bug: #1644629
    Change-Id: I49beaf3f686adf02b156cb3d1d51ca7aebab6f6f
    (cherry picked from commit 23b9b6a393aa354556e6c51c4888e8a862bf5630)

To post a comment you must log in.
This report contains Public information  
Everyone can see this information.

Other bug subscribers

Remote bug watches

Bug watches keep track of this bug in other bug trackers.