bd6a0d8221
This patch adds curl to the packages installed into the utility container to ensure that the task to get the list of python clients works properly. The patch also renames the package list variable name to the new convention and moves the declaration of it into group_vars so that it is overridable. Change-Id: If82485f99fe67d2c1957320c61f1231128e5ce50
55 lines
2.4 KiB
YAML
55 lines
2.4 KiB
YAML
---
|
|
# Copyright 2016, 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.
|
|
|
|
tempest_log_dir: /var/log/utility
|
|
|
|
# Set this if ssh access from the utility container to all other hosts is
|
|
# desired
|
|
# utility_ssh_private_key: "{{ lookup('file', '/root/.ssh/id_rsa') }}"
|
|
|
|
galera_client_drop_config_file: true
|
|
|
|
# If cinder has a backup service enabled, make sure that Tempest tests it
|
|
tempest_volume_backup_enabled: "{{ cinder_service_backup_program_enabled | bool }}"
|
|
|
|
# If there are Telemetry hosts in the environment, make sure that Tempest
|
|
# tests them
|
|
tempest_service_available_aodh: "{{ groups['aodh_all'] is defined and groups['aodh_all'] | length > 0 }}"
|
|
tempest_service_available_ceilometer: "{{ groups['ceilometer_all'] is defined and groups['ceilometer_all'] | length > 0 }}"
|
|
tempest_service_available_cinder: "{{ groups['cinder_all'] is defined and groups['cinder_all'] | length > 0 }}"
|
|
tempest_service_available_glance: "{{ groups['glance_all'] is defined and groups['glance_all'] | length > 0 }}"
|
|
tempest_service_available_heat: "{{ groups['heat_all'] is defined and groups['heat_all'] | length > 0 }}"
|
|
tempest_service_available_horizon: "{{ groups['horizon_all'] is defined and groups['horizon_all'] | length > 0 }}"
|
|
tempest_service_available_neutron: "{{ groups['neutron_all'] is defined and groups['neutron_all'] | length > 0 }}"
|
|
tempest_service_available_nova: "{{ groups['nova_all'] is defined and groups['nova_all'] | length > 0 }}"
|
|
tempest_service_available_swift: "{{ groups['swift_all'] is defined and groups['swift_all'] | length > 0 }}"
|
|
|
|
# Ensure that the package state matches the global setting
|
|
utility_package_state: "{{ package_state }}"
|
|
|
|
# Distribution packages to be installed into the utility container
|
|
utility_distro_packages:
|
|
- curl
|
|
- git
|
|
|
|
# Python packages to be installed into the utility container
|
|
utility_pip_packages:
|
|
- python-memcached
|
|
- pycrypto
|
|
|
|
rally_galera_user: rally
|
|
rally_galera_database_name: rally
|
|
rally_galera_address: "{{ galera_address }}"
|