
This change allows the MNAIO to really be used as a stand alone kick system which has the potential to be developed into a stand alone project. At the very least this change improves playbook performance by scoping variables. The inventory has been converted into a typical Ansible inventory and the "servers" used in the MNAIO are now simply host_vars which will trigger specific VM builds when instructed to do so. This gives the MNAIO the ability to serve as a stand alone kick system which could be used for physical hosts as well as MNAIO testing all through the same basic set of playbooks. Should a deployer want to use this with physical servers they'd need to do nothing more than define their basic inventory and where the the required pieces of infrastructure needed to PXE boot their machines. Change-Id: I6c47e02ecfbe8ee7533e77b11041785db485a1a9 Signed-off-by: Kevin Carter <kevin.carter@rackspace.com>
282 lines
9.0 KiB
YAML
282 lines
9.0 KiB
YAML
---
|
|
# Copyright 2017, 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 witing, 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 facts
|
|
hosts: mnaio_hosts
|
|
gather_facts: "{{ gather_facts | default(true) }}"
|
|
pre_tasks:
|
|
- name: Gather variables for each operating system
|
|
include_vars: "{{ item }}"
|
|
with_first_found:
|
|
- "{{ playbook_dir }}/vars/{{ ansible_distribution | lower }}-{{ ansible_distribution_version | lower }}.yml"
|
|
- "{{ playbook_dir }}/vars/{{ ansible_distribution | lower }}-{{ ansible_distribution_major_version | lower }}.yml"
|
|
- "{{ playbook_dir }}/vars/{{ ansible_os_family | lower }}-{{ ansible_distribution_major_version | lower }}.yml"
|
|
- "{{ playbook_dir }}/vars/{{ ansible_distribution | lower }}.yml"
|
|
- "{{ playbook_dir }}/vars/{{ ansible_os_family | lower }}.yml"
|
|
tags:
|
|
- always
|
|
|
|
- name: Install host distro packages
|
|
package:
|
|
pkg: "{{ item }}"
|
|
state: "latest"
|
|
update_cache: yes
|
|
cache_valid_time: 600
|
|
with_items: "{{ mnaio_host_distro_packages }}"
|
|
|
|
tasks:
|
|
- name: Ensure root has a .ssh directory
|
|
file:
|
|
path: /root/.ssh
|
|
state: directory
|
|
owner: root
|
|
group: root
|
|
mode: 0700
|
|
|
|
- name: Create ssh key pair for root
|
|
user:
|
|
name: root
|
|
generate_ssh_key: yes
|
|
ssh_key_bits: 2048
|
|
ssh_key_file: /root/.ssh/id_rsa
|
|
|
|
- name: Get root public key
|
|
command: cat /root/.ssh/id_rsa.pub
|
|
register: public_key_get
|
|
changed_when: false
|
|
|
|
- name: Set key facts
|
|
set_fact:
|
|
root_public_key: "{{ public_key_get.stdout }}"
|
|
|
|
- name: Ensure root can ssh to localhost
|
|
authorized_key:
|
|
user: "root"
|
|
key: "{{ root_public_key }}"
|
|
|
|
- name: Add sysctl options
|
|
sysctl:
|
|
name: net.ipv4.ip_forward
|
|
value: 1
|
|
sysctl_set: yes
|
|
state: present
|
|
reload: yes
|
|
sysctl_file: /etc/sysctl.conf
|
|
|
|
- name: Get gateway interface
|
|
shell: "/sbin/ip r g 1 | awk '{print $5}'"
|
|
register: gw_iface
|
|
|
|
- set_fact:
|
|
masquerade_interface: "{{ gw_iface.stdout.strip() }}"
|
|
|
|
- name: Add IPtables rules
|
|
iptables:
|
|
table: "{{ item.table | default(omit) }}"
|
|
chain: "{{ item.chain | default(omit) }}"
|
|
in_interface: "{{ item.in_interface | default(omit) }}"
|
|
out_interface: "{{ item.out_interface | default(omit) }}"
|
|
source: "{{ item.source | default(omit) }}"
|
|
destination: "{{ item.destination | default(omit) }}"
|
|
protocol: "{{ item.protocol | default(omit) }}"
|
|
match: "{{ item.match | default(omit) }}"
|
|
destination_port: "{{ item.destination_port | default(omit) }}"
|
|
jump: "{{ item.jump | default(omit) }}"
|
|
to_ports: "{{ item.to_ports | default(omit) }}"
|
|
with_items: "{{ mnaio_host_iptables_rules }}"
|
|
|
|
# These rules are added manually due to bugs in the iptables module.
|
|
- name: Add IPtables rules
|
|
shell: |
|
|
if ! iptables -w -t {{ item.table }} -C {{ item.rule }};then
|
|
iptables -w -t {{ item.table }} -I {{ item.rule }}
|
|
fi
|
|
with_items:
|
|
- table: 'nat'
|
|
rule: 'POSTROUTING -s 10.0.2.0/22 ! -d 10.0.2.0/22 -j MASQUERADE'
|
|
- table: 'mangle'
|
|
rule: 'POSTROUTING -s 10.0.2.0/22 -o vm-br-dhcp -p udp -m udp --dport 68 -j CHECKSUM --checksum-fill'
|
|
- table: 'mangle'
|
|
rule: 'POSTROUTING -s 10.0.2.0/22 -o vm-br-dhcp -p udp -m udp --dport 68 -j CHECKSUM --checksum-fill'
|
|
|
|
- name: Start netfilter persistent
|
|
service:
|
|
name: "{{ mnaio_host_iptables_service }}"
|
|
state: started
|
|
enabled: yes
|
|
when:
|
|
- ansible_distribution | lower == 'ubuntu'
|
|
|
|
- name: Drop host network interfaces
|
|
template:
|
|
src: "mnaio/{{ ansible_os_family | lower }}/mnaio-bridges.cfg.j2"
|
|
dest: /etc/network/interfaces.d/mnaio-bridges.cfg
|
|
mode: "0644"
|
|
owner: root
|
|
group: root
|
|
register: mnaio_bridges
|
|
|
|
- name: Ensure extra interfaces are sourced
|
|
lineinfile:
|
|
line: "source /etc/network/interfaces.d/*.cfg"
|
|
dest: "/etc/network/interfaces"
|
|
|
|
- name: Set the host intefaces up
|
|
command: "/sbin/ifup {{ item.value.iface }}"
|
|
with_dict: "{{ mnaio_host_networks }}"
|
|
when: mnaio_bridges | changed
|
|
|
|
- name: Disable virsh default network
|
|
shell: |
|
|
if virsh net-list | grep -qw "default"; then
|
|
virsh net-autostart default --disable
|
|
virsh net-destroy default
|
|
fi
|
|
|
|
- name: Drop virsh network configs
|
|
template:
|
|
src: "kvm/libvirt-network-template.xml"
|
|
dest: "/etc/libvirt/qemu/networks/{{ item.value.iface }}.xml"
|
|
mode: "0644"
|
|
owner: root
|
|
group: root
|
|
with_dict: "{{ mnaio_host_networks }}"
|
|
|
|
- name: Enable new virsh network(s)
|
|
shell: |
|
|
if ! virsh net-list | grep -qw "{{ item.value.iface }}"; then
|
|
virsh net-define --file /etc/libvirt/qemu/networks/{{ item.value.iface }}.xml
|
|
virsh net-create --file /etc/libvirt/qemu/networks/{{ item.value.iface }}.xml
|
|
virsh net-autostart {{ item.value.iface }} || ture
|
|
fi
|
|
with_dict: "{{ mnaio_host_networks }}"
|
|
|
|
- name: Locate data volume
|
|
command: "vgdisplay vg01"
|
|
failed_when: false
|
|
register: data_volume
|
|
|
|
- name: Locate data disk
|
|
shell: >
|
|
lsblk -brndo NAME,TYPE,FSTYPE,RO,SIZE | awk '/d[b-z]+ disk +0/{ if ($4>m){m=$4; d=$1}}; END{print d}'
|
|
register: lsblk
|
|
when:
|
|
- data_volume.rc != 0
|
|
- mnaio_data_disk is undefined
|
|
|
|
- name: Create data disk label
|
|
command: "parted --script /dev/{{ mnaio_data_disk | default(lsblk.stdout) }} mklabel gpt"
|
|
when:
|
|
- data_volume.rc != 0
|
|
|
|
- name: Create data disk partition
|
|
command: "parted --align optimal --script /dev/{{ mnaio_data_disk | default(lsblk.stdout) }} mkpart data1 ext4 0% 100%"
|
|
when:
|
|
- data_volume.rc != 0
|
|
|
|
- name: Create data volume group
|
|
lvg:
|
|
vg: vg01
|
|
pvs: "/dev/{{ mnaio_data_disk | default(lsblk.stdout) }}1"
|
|
when:
|
|
- data_volume.rc != 0
|
|
|
|
- name: Locate virsh data volume
|
|
command: "virsh pool-info vg01"
|
|
failed_when: false
|
|
register: virsh_data_volume
|
|
|
|
- name: Create virsh data volume
|
|
shell: |
|
|
virsh pool-create-as vg01 logical
|
|
virsh pool-dumpxml vg01 > /etc/libvirt/storage/vg01.xml
|
|
virsh pool-define /etc/libvirt/storage/vg01.xml
|
|
virsh pool-autostart vg01 || true
|
|
when:
|
|
- virsh_data_volume.rc != 0
|
|
|
|
- name: Load virtio kernel modules
|
|
shell: |
|
|
for mod in $(find /lib/modules/$(uname -r) -type f -name 'virtio*.ko'); do
|
|
module=$(echo $(basename $mod) | sed 's/\.ko//g')
|
|
modprobe ${module}
|
|
if ! grep ${module} /etc/modules; then
|
|
echo ${module} | tee -a /etc/modules
|
|
fi
|
|
done
|
|
|
|
- name: Install repo caching server packages
|
|
package:
|
|
name: "{{ item }}"
|
|
state: "latest"
|
|
with_items: "{{ mnaio_pkg_cache_server_distro_packages }}"
|
|
|
|
- name: Create cache directory
|
|
file:
|
|
path: "/var/www/pkg-cache"
|
|
state: "directory"
|
|
owner: "apt-cacher-ng"
|
|
group: "www-data"
|
|
mode: "02775"
|
|
|
|
- name: Stat the cache path
|
|
stat:
|
|
path: /var/cache/apt-cacher-ng
|
|
register: acs
|
|
|
|
- name: Remove cacher directory if its a directory
|
|
file:
|
|
path: "/var/cache/apt-cacher-ng"
|
|
state: "absent"
|
|
when:
|
|
- acs.stat.isdir is defined and acs.stat.isdir
|
|
|
|
- name: Link cacher to the repo path
|
|
file:
|
|
src: "/var/www/pkg-cache"
|
|
dest: "/var/cache/apt-cacher-ng"
|
|
state: "link"
|
|
|
|
- name: create yum merged mirror list
|
|
shell: |
|
|
curl https://www.centos.org/download/full-mirrorlist.csv | sed 's/^.*"http:/http:/' | sed 's/".*$//' | grep ^http >/etc/apt-cacher-ng/centos_mirrors
|
|
echo "http://mirror.centos.org/centos/" >>/etc/apt-cacher-ng/centos_mirrors
|
|
|
|
- name: Drop acng.conf
|
|
template:
|
|
src: "pxe/acng.conf.j2"
|
|
dest: "/etc/apt-cacher-ng/acng.conf"
|
|
notify:
|
|
- reload acng
|
|
|
|
- name: Drop apt package manager proxy
|
|
copy:
|
|
content: 'Acquire::http { Proxy "{{ default_ubuntu_mirror_proxy }}"; };'
|
|
dest: "/etc/apt/apt.conf.d/00apt-cacher-proxy"
|
|
|
|
- name: Update apt when proxy is added
|
|
apt:
|
|
update_cache: yes
|
|
|
|
handlers:
|
|
- name: reload acng
|
|
service:
|
|
name: "apt-cacher-ng"
|
|
state: restarted
|
|
enabled: yes
|
|
|
|
tags:
|
|
- setup-host
|