diff options
author | Tim Flink <tflink@fedoraproject.org> | 2014-06-25 21:44:54 +0000 |
---|---|---|
committer | Tim Flink <tflink@fedoraproject.org> | 2014-06-25 21:45:15 +0000 |
commit | e828212cf19f2f58884e022a923fe3fcb20c374d (patch) | |
tree | 7f4d2c99569d4aed978011f4539bd6994caa592d /inventory/group_vars/resultsdb-dev | |
parent | 6f40c0701b4b3353e9e0984de152f9d44cc51fa7 (diff) | |
download | ansible-e828212cf19f2f58884e022a923fe3fcb20c374d.tar.gz ansible-e828212cf19f2f58884e022a923fe3fcb20c374d.tar.xz ansible-e828212cf19f2f58884e022a923fe3fcb20c374d.zip |
adding resultsdb-dev group and resultsdb-dev01.qa host
Diffstat (limited to 'inventory/group_vars/resultsdb-dev')
-rw-r--r-- | inventory/group_vars/resultsdb-dev | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/inventory/group_vars/resultsdb-dev b/inventory/group_vars/resultsdb-dev new file mode 100644 index 000000000..a2f54b258 --- /dev/null +++ b/inventory/group_vars/resultsdb-dev @@ -0,0 +1,28 @@ +--- +# common items for the releng-* boxes +lvm_size: 50000 +mem_size: 4096 +num_cpus: 4 +# for systems that do not match the above - specify the same parameter in +# the host_vars/$hostname file + +tcp_ports: [ 80, 443, "{{ resultsdb_db_port }}" ] +fas_client_groups: sysadmin-qa +nrpe_procs_warn: 250 +nrpe_procs_crit: 300 + +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 + "ksdevice=eth0 ks={{ ks_url }} console=tty0 console=ttyS0 + hostname={{ inventory_hostname }} nameserver={{ dns }} + ip={{ eth0_ip }}::{{ gw }}:{{ nm }}:{{ inventory_hostname }}:eth0:none" + --network=bridge=br0,model=virtio --autostart --noautoconsole + +resultsdb_db_host: db-qa01.qa.fedoraproject.org +resultsdb_db_port: 5432 +resultsdb_endpoint: '/resultsdb' +resultsdb_fe_endpoint: '/' +resultsdb_db_name: resultsdb_dev +allowed_hosts: + - 10.5.124 |