openstack-ansible/playbooks/roles/os_tempest/tasks/tempest_post_install.yml
Kevin Carter be9c5d50f4 adds the config_template to tempest
The change modifies the tempest template tasks such that it's now
using the config_template action plugin. This change will make so that
config files can be dynamically updated, by a deployer, at run time,
without requiring the need to modify the in tree templates or defaults.

Partially implements: blueprint tunable-openstack-configuration

Change-Id: I3b664fcec14bf01f9916ced0b8595a57d4873f79
2015-09-21 11:13:09 +00:00

109 lines
2.8 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: Get admin tenant id
keystone:
command: get_tenant
token: "{{ keystone_auth_admin_token }}"
tenant_name: admin
endpoint: "{{ keystone_service_adminurl }}"
register: add_service
until: add_service|success
retries: 5
delay: 10
tags:
- tempest-config
- name: Store admin tenant id
set_fact:
tempest_admin_tenant_id: "{{ keystone_facts.id }}"
tags:
- tempest-config
- name: Create tempest dir
file:
path: "{{ item.path }}"
state: directory
owner: "root"
group: "root"
mode: "{{ item.mode|default('0755') }}"
with_items:
- { path: "{{ tempest_git_dest }}/locks", mode: "0777" }
- { path: "{{ tempest_git_dest }}/etc" }
- { path: "{{ tempest_image_dir }}" }
tags:
- tempest-dirs
- tempest-config
- tempest-image
- name: Image(s) download
get_url:
url: "{{ item.url }}"
dest: "{{ tempest_image_dir }}"
sha256sum: "{{ item.sha256 }}"
with_items: tempest_images
tags:
- tempest-config
- tempest-image
- name: Locate archives
shell: |
ls -1 {{ tempest_image_dir }} | grep '.gz'
register: tempest_archives
tags:
- tempest-config
- tempest-image
- tempest-image-unarchive
- name: Image(s) unarchive
unarchive:
src: "{{ tempest_image_dir }}/{{ item }}"
dest: "{{ tempest_image_dir }}"
copy: "no"
with_items: tempest_archives.stdout
tags:
- tempest-config
- tempest-image
- tempest-image-unarchive
- name: Copy tempest config
config_template:
src: "{{ item.src }}"
dest: "{{ item.dest }}"
owner: "root"
group: "root"
mode: "0644"
config_overrides: "{{ item.config_overrides }}"
config_type: "{{ item.config_type }}"
with_items:
- src: "tempest.conf.j2"
dest: "{{ tempest_git_dest }}/etc/tempest.conf"
config_overrides: "{{ tempest_tempest_conf_overrides }}"
config_type: "ini"
tags:
- tempest-config
- name: Generate tempest Config
template:
src: "{{ item.src }}"
dest: "{{ item.dest }}"
owner: "root"
group: "root"
mode: "{{ item.mode|default('0644') }}"
with_items:
- { src: openstack_tempest_gate.sh.j2, dest: /opt/openstack_tempest_gate.sh, mode: "0755" }
tags:
- tempest-config