3a16e0eaa9
"This option is a no op, and the functionality described in previous versions was not implemented. This option will be removed in Ansible v2.8" Change-Id: If8fdda822903a7cbfbe5eb8c3464b0ca36db33c6
44 lines
1.5 KiB
YAML
44 lines
1.5 KiB
YAML
---
|
|
# Copyright 2015, 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: Playbook for deploying tempest
|
|
hosts: utility_all
|
|
# We explicitly do not use 'remote_user: root' here because the
|
|
# role totally fails when we do due to the delegation of the
|
|
# cirros image download into /opt/cache/files due to that path
|
|
# not being writable.
|
|
# TODO(odyssey4me):
|
|
# Figure out whether this issue happens for normal (non localhost)
|
|
# delegation, and how to resolve the issue.
|
|
become: True
|
|
gather_facts: true
|
|
any_errors_fatal: true
|
|
vars_files:
|
|
- test-vars.yml
|
|
tasks:
|
|
- name: Setup clouds.yaml for the root user
|
|
include_role:
|
|
name: openstack_openrc
|
|
vars:
|
|
openrc_file_dest: "/root/openrc"
|
|
openrc_file_owner: "root"
|
|
openrc_openstack_client_config_dir_dest: "/root/.config/openstack"
|
|
openrc_openstack_client_config_dir_owner: "root"
|
|
openrc_clouds_yml_file_owner: "root"
|
|
|
|
- name: Include Tempest role
|
|
include_role:
|
|
name: "{{ tempest_rolename | default('os_tempest') }}"
|