191e0b8660
None of the hosts need pip installed any more. Everything installed on the host is now a distribution package, and all pip packages are inside a virtualenv. As such, we make the final changes to eliminate the installation of pip on the host. 1. We change the pip_install role settings to only put pip.conf down, and not bother installing pip. The pip.conf remains necessary to provide any pip installs done in venvs with the details of the repo server. 2. We update the utility container playbook so that it installs everything into a venv, then symlinks the appropriate openstack client binaries to /usr/local/bin for convenient access. This is only done for source based installs. 3. We update the ceph radosgw keystone setup to make it use the appropriate service host, and to make use of the correct runtime venv. It also now makes use of native ansible modules instead of our own. Depends-On: https://review.openstack.org/587840 Depends-On: https://review.openstack.org/587849 Depends-On: https://review.openstack.org/589643 Depends-On: https://review.openstack.org/590011 Depends-On: https://review.openstack.org/590178 Change-Id: Iac018386e98d1531b605c66bccf3bcce10226e19
33 lines
1.1 KiB
YAML
33 lines
1.1 KiB
YAML
---
|
|
# Copyright 2017, Rackspace US, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
- name: Configure all nodes to use the repo container for python/apt packages
|
|
hosts: "{{ openstack_host_group | default('hosts') }}:all_containers"
|
|
vars:
|
|
pip_install: no
|
|
pip_configure: yes
|
|
vars_files:
|
|
- "defaults/repo_packages/openstack_services.yml"
|
|
- "defaults/{{ install_method }}_install.yml"
|
|
environment: "{{ deployment_environment_variables | default({}) }}"
|
|
tags:
|
|
- always
|
|
- repo-config
|
|
pre_tasks:
|
|
- include: common-tasks/package-cache-proxy.yml
|
|
- include: common-tasks/set-pip-vars.yml
|
|
roles:
|
|
- pip_install
|