39505d2b8e
This commit breaks out the tests/test.yml file into sub task files and deploys all the necessary components (keystone, glance, neutron) to boot nova instances. The functional test validates a few nova ports and then proceeds to creating to a glance image and neutron network bits before spinning up an instance. Additionally, this change does the following: - fully defines the inventory rather than having test-prepare-host.yml add containers to it - removes installation of lxc_python2 library, since this is no longer necessary - updates test-prepare-keys.yml to use localhost instead of 127.0.0.1, uses become_user=jenkins instead of become=false, and removes redundant connection - updates test-prepare-host.yml by removing redundant become and connection options, changes 127.0.0.1 to localhost, and removes mocking ansible_env - groups vars in defined in each individual file into a single test-vars.yml file Change-Id: I80b1923cbf5c4375d2fb71bc71c326d43f1443b4
33 lines
1.2 KiB
YAML
33 lines
1.2 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 infra services
|
|
hosts: service_all
|
|
user: root
|
|
gather_facts: true
|
|
roles:
|
|
- role: "rabbitmq_server"
|
|
rabbitmq_cookie_token: secrete
|
|
- role: "galera_server"
|
|
galera_root_password: secrete
|
|
galera_root_user: root
|
|
galera_innodb_buffer_pool_size: 512M
|
|
galera_innodb_log_buffer_size: 32M
|
|
galera_server_id: "{{ inventory_hostname | string_2_int }}"
|
|
galera_wsrep_node_name: "{{ inventory_hostname }}"
|
|
galera_wsrep_provider_options:
|
|
- { option: "gcache.size", value: "32M" }
|
|
galera_server_id: "{{ inventory_hostname | string_2_int }}"
|