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

tags: added: in-stable-newton
Changed in openstack-ansible:
status: In Progress → Fix Released
78 comments hidden view all 158 comments
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)

Displaying first 40 and last 40 comments. View all 158 comments or add a comment.
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.