Drop monitor.

This commit is contained in:
Kevin Fenzi 2014-07-21 18:07:28 +00:00
parent 9676c5befb
commit d9ce6b13ce
4 changed files with 0 additions and 82 deletions

View file

@ -1,20 +0,0 @@
---
# Define resources for this group of hosts here.
lvm_size: 30000
mem_size: 4096
num_cpus: 1
# for systems that do not match the above - specify the same parameter in
# the host_vars/$hostname file
fas_client_groups: sysadmin-qa
# default virt install command is for a single nic-device
# define in another group file for more nics (see buildvm)
virt_install_command: /usr/sbin/virt-install -n {{ inventory_hostname }} -r {{ mem_size }}
--disk bus=virtio,path={{ volgroup }}/{{ inventory_hostname }}
--vcpus={{ num_cpus }} -l {{ ks_repo }} -x
"ks={{ ks_url }} ip={{ eth0_ip }} netmask={{ nm }}
gateway={{ gw }} dns={{ dns }} console=tty0 console=ttyS0
hostname={{ inventory_hostname }}"
--network=bridge=br0 --autostart --noautoconsole

View file

@ -1,10 +0,0 @@
---
nm: 255.255.255.0
gw: 10.5.124.254
dns: 10.5.126.21
ks_url: http://10.5.126.23/repo/rhel/ks/kvm-fedora-20
ks_repo: http://10.5.126.23/pub/fedora/linux/releases/20/Fedora/x86_64/os/
volgroup: /dev/Guests00
eth0_ip: 10.5.124.229
vmhost: virthost-comm01.qa.fedoraproject.org
datacenter: phx2

View file

@ -528,9 +528,6 @@ taskotron-client21.qa.fedoraproject.org
[taskotron-prod]
taskotron01.qa.fedoraproject.org
[monitor]
monitor.qa.fedoraproject.org
[unbound]
unbound-ib01.fedoraproject.org
unbound-telia01.fedoraproject.org

View file

@ -1,49 +0,0 @@
# create a new monitor server
#
# This server looks for rawhide builds and requests they be signed.
#
- name: make monitor server
hosts: monitor
user: root
gather_facts: False
accelerate: "{{ accelerated }}"
vars_files:
- /srv/web/infra/ansible/vars/global.yml
- "{{ private }}/vars.yml"
- /srv/web/infra/ansible/vars/{{ ansible_distribution }}.yml
tasks:
- include: "{{ tasks }}/virt_instance_create.yml"
handlers:
- include: "{{ handlers }}/restart_services.yml"
- name: make the box be real
hosts: monitor
user: root
gather_facts: True
accelerate: "{{ accelerated }}"
vars_files:
- /srv/web/infra/ansible/vars/global.yml
- "{{ private }}/vars.yml"
- /srv/web/infra/ansible/vars/{{ ansible_distribution }}.yml
roles:
- base
- rkhunter
- nagios_client
- fas_client
- collectd/base
- sudo
tasks:
- include: "{{ tasks }}/hosts.yml"
- include: "{{ tasks }}/yumrepos.yml"
- include: "{{ tasks }}/2fa_client.yml"
- include: "{{ tasks }}/motd.yml"
handlers:
- include: "{{ handlers }}/restart_services.yml"