14d5186079
In order to reduce the packages required to pip install on to the hosts, we use service delegation to octavia_service_setup_host so that instead of installing software on the target host, and putting credentials on every target host, we isolate the software and credentials to a single host. In this patch we finally remove octavia_requires_pip_packages as it is no longer required given that all services use delegation to the octavia_service_setup_host now. We also remove the task which used to install them. We also remove the meta dependency on the openstack_openrc role because the target host does not require openrc/clouds.yaml any more. We remove the variable 'octavia_ansible_endpoint_type' as it is no longer used. We finally remove the python-pip package from the distro packages, as with these changes, pip is no longer required on the host - everything installed by pip is isolated into a venv. Change-Id: If3f65fdb8a59a3c41cb8c2f0dee6b2e5a71f05c7
24 lines
727 B
YAML
24 lines
727 B
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.
|
|
|
|
## APT Cache options
|
|
cache_timeout: 600
|
|
|
|
octavia_distro_packages:
|
|
- git
|
|
- iptables-persistent
|
|
- libxml2-dev
|
|
- netfilter-persistent
|