5a39413607
This patch cleans up the container cache preparation in the tests due to the following patches: - https://review.openstack.org/307856 (new image build process) - https://review.openstack.org/315114 (new apt config process) - https://review.openstack.org/322188 (new resolver config process) Change-Id: Iacc759b8bac213afc6cf8925036ad3d88feefc0e
54 lines
2.0 KiB
YAML
54 lines
2.0 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 configuring the LXC host
|
|
hosts: localhost
|
|
pre_tasks:
|
|
- name: Update apt cache
|
|
apt:
|
|
update_cache: yes
|
|
when: ansible_os_family == 'Debian'
|
|
- name: Ensure root's new public ssh key is in authorized_keys
|
|
authorized_key:
|
|
user: root
|
|
key: "{{ hostvars['localhost']['lxc_container_ssh_key'] }}"
|
|
manage_dir: no
|
|
- set_fact:
|
|
lxc_container_ssh_key: "{{ hostvars['localhost']['lxc_container_ssh_key'] }}"
|
|
- name: Check if this is an OpenStack-CI nodepool instance
|
|
stat:
|
|
path: /etc/nodepool/provider
|
|
register: nodepool
|
|
- name: Set the files to copy into the container cache for OpenStack-CI instances
|
|
set_fact:
|
|
lxc_container_cache_files:
|
|
- { src: '/etc/pip.conf', dest: '/etc/pip.conf' }
|
|
when: nodepool.stat.exists | bool
|
|
post_tasks:
|
|
- name: Create br-storage bridge
|
|
shell: /sbin/brctl addbr br-storage || true
|
|
- name: IP br-storage
|
|
command: /sbin/ifconfig br-storage 10.100.101.1 netmask 255.255.255.0
|
|
- name: Create br-repl bridge
|
|
shell: /sbin/brctl addbr br-repl || true
|
|
- name: IP br-repl
|
|
command: /sbin/ifconfig br-repl 10.100.102.1 netmask 255.255.255.0
|
|
- name: Add iptables rule to ensure ssh checksum is correct
|
|
command: /sbin/iptables -A POSTROUTING -t mangle -p tcp --dport 22 -j CHECKSUM --checksum-fill
|
|
roles:
|
|
- role: "lxc_hosts"
|
|
vars_files:
|
|
- test-vars.yml
|