openstack-ansible-os_tempest/tasks/main.yml
Dmitriy Rabotyagov 7e8f1a90f1 Deploy resources only when tempest_run is True
Setting this condition will make possible to only install tempest
without  creating weird resources. We still will install them,
when deployer explicitly set to run tempest with the role.

Change-Id: I37bc266eebd3a8455acac179055b87810143dfc4
2020-07-07 19:22:41 +03:00

72 lines
2.2 KiB
YAML

---
# Copyright 2014, 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: Gather variables for each operating system
include_vars: "{{ item }}"
with_first_found:
- "{{ ansible_distribution | lower }}-{{ ansible_distribution_version | lower }}.yml"
- "{{ ansible_distribution | lower }}-{{ ansible_distribution_major_version | lower }}.yml"
- "{{ ansible_os_family | lower }}-{{ ansible_distribution_major_version | lower }}.yml"
- "{{ ansible_distribution | lower }}.yml"
- "{{ ansible_os_family | lower }}-{{ ansible_distribution_version.split('.')[0] }}.yml"
- "{{ ansible_os_family | lower }}.yml"
tags:
- always
- name: Set tempest service specific variables
set_fact:
tempest_service_available_{{ item }}: true
with_items: "{{ tempest_services }}"
when: tempest_services | length > 0
# NOTE(jrosser) we use source installs for temepest and it's plugins on ubuntu distro installs
- name: Gather variables for source installs
include_vars: source_install.yml
when:
- ((tempest_install_method == 'source') or (tempest_install_method == 'distro' and ansible_distribution == 'Ubuntu'))
tags:
- always
- name: Gather variables for distro installs
include_vars: distro_install.yml
when:
- tempest_install_method == 'distro'
tags:
- always
- import_tasks: tempest_install.yml
tags:
- tempest-install
- import_tasks: tempest_resources.yml
when: tempest_run | bool
run_once: yes
tags:
- tempest-config
- tempest-run
- import_tasks: tempest_post_install.yml
tags:
- tempest-config
- name: Flush handlers
meta: flush_handlers
- import_tasks: tempest_run.yml
when: tempest_run | bool
tags:
- tempest-config
- tempest-run