[2/7] Install python3 version of OpenStack client software

Some Ubuntu packages for Stein require python3 versions of
OpenStack python client libraries already. For the sake of
consistency and progress, switch the rest.

Change-Id: I4f84d0a803a9b5c6721c6e1247ee160385ae9e21
This commit is contained in:
Roger Luethi 2019-05-06 09:04:04 +02:00
parent e81d3cfe9a
commit 909c6da950
2 changed files with 8 additions and 8 deletions

View File

@ -29,11 +29,11 @@ apt_download mongodb-server mongodb-clients python-pymongo
apt_download python-argparse python-dev python-pip apt_download python-argparse python-dev python-pip
# Keystone # Keystone
apt_download keystone python-openstackclient apache2 \ apt_download keystone python3-openstackclient apache2 \
libapache2-mod-wsgi memcached python-memcache libapache2-mod-wsgi memcached python-memcache
# Glance # Glance
apt_download glance python-glanceclient apt_download glance python3-glanceclient
# Nova Controller # Nova Controller
apt_download nova-api nova-conductor nova-consoleauth \ apt_download nova-api nova-conductor nova-consoleauth \
@ -45,10 +45,10 @@ apt_download nova-placement-api
# Neutron Controller # Neutron Controller
apt_download neutron-server neutron-plugin-ml2 \ apt_download neutron-server neutron-plugin-ml2 \
neutron-linuxbridge-agent neutron-dhcp-agent \ neutron-linuxbridge-agent neutron-dhcp-agent \
neutron-metadata-agent neutron-l3-agent python-neutronclient conntrack neutron-metadata-agent neutron-l3-agent python3-neutronclient conntrack
# Cinder Controller # Cinder Controller
apt_download cinder-api cinder-scheduler python-cinderclient apt_download cinder-api cinder-scheduler python3-cinderclient
# Horizon # Horizon
apt_download openstack-dashboard apt_download openstack-dashboard
@ -63,11 +63,11 @@ apt_download nova-compute nova-compute-qemu qemu sysfsutils
apt_download neutron-linuxbridge-agent apt_download neutron-linuxbridge-agent
# Heat # Heat
apt_download heat-api heat-api-cfn heat-engine python-heatclient apt_download heat-api heat-api-cfn heat-engine python3-heatclient
# Swift Controller # Swift Controller
apt_download swift swift-proxy python-swiftclient \ apt_download swift swift-proxy python3-swiftclient \
python-keystoneclient python-keystonemiddleware \ python3-keystoneclient python3-keystonemiddleware \
memcached memcached
# Swift Storage # Swift Storage

View File

@ -35,7 +35,7 @@ sudo apt -y clean
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
echo "Installing OpenStack client." echo "Installing OpenStack client."
sudo apt install -y python-openstackclient sudo apt install -y python3-openstackclient
# Starting with bionic, the Ubuntu LTS switched to a new set of network # Starting with bionic, the Ubuntu LTS switched to a new set of network
# management. We install and use the legacy tools for the time being. # management. We install and use the legacy tools for the time being.