diff options
| author | Kenny Woodson <kwoodson@redhat.com> | 2015-08-31 14:21:01 -0400 | 
|---|---|---|
| committer | Kenny Woodson <kwoodson@redhat.com> | 2015-08-31 14:21:01 -0400 | 
| commit | 2f9e5e2f6f76192a9ea0ccc687fcc7b8b16706a6 (patch) | |
| tree | 724cceae135c9e966ad32cf5443dad16fca5a778 /playbooks/adhoc/zabbix_setup | |
| parent | bac81adf9d7036e02db457eb78d5d91c3d630cd9 (diff) | |
| parent | 1f52ea8c4e2f8cfce51e98cb3614c61f0d78ec3e (diff) | |
| download | openshift-2f9e5e2f6f76192a9ea0ccc687fcc7b8b16706a6.tar.gz openshift-2f9e5e2f6f76192a9ea0ccc687fcc7b8b16706a6.tar.bz2 openshift-2f9e5e2f6f76192a9ea0ccc687fcc7b8b16706a6.tar.xz openshift-2f9e5e2f6f76192a9ea0ccc687fcc7b8b16706a6.zip | |
Merge pull request #539 from twiest/pr
added docker zabbix template, removed unused / old templates so they don't confuse other people.
Diffstat (limited to 'playbooks/adhoc/zabbix_setup')
| l--------- | playbooks/adhoc/zabbix_setup/filter_plugins | 1 | ||||
| -rwxr-xr-x | playbooks/adhoc/zabbix_setup/oo-clean-zaio.yml | 7 | ||||
| -rwxr-xr-x | playbooks/adhoc/zabbix_setup/oo-config-zaio.yml | 13 | ||||
| l--------- | playbooks/adhoc/zabbix_setup/roles | 1 | 
4 files changed, 22 insertions, 0 deletions
| diff --git a/playbooks/adhoc/zabbix_setup/filter_plugins b/playbooks/adhoc/zabbix_setup/filter_plugins new file mode 120000 index 000000000..b0b7a3414 --- /dev/null +++ b/playbooks/adhoc/zabbix_setup/filter_plugins @@ -0,0 +1 @@ +../../../filter_plugins/
\ No newline at end of file diff --git a/playbooks/adhoc/zabbix_setup/oo-clean-zaio.yml b/playbooks/adhoc/zabbix_setup/oo-clean-zaio.yml new file mode 100755 index 000000000..0fe65b338 --- /dev/null +++ b/playbooks/adhoc/zabbix_setup/oo-clean-zaio.yml @@ -0,0 +1,7 @@ +#!/usr/bin/env ansible-playbook +--- +- include: clean_zabbix.yml +  vars: +    g_server: http://localhost/zabbix/api_jsonrpc.php +    g_user: Admin +    g_password: zabbix diff --git a/playbooks/adhoc/zabbix_setup/oo-config-zaio.yml b/playbooks/adhoc/zabbix_setup/oo-config-zaio.yml new file mode 100755 index 000000000..e2b8150c6 --- /dev/null +++ b/playbooks/adhoc/zabbix_setup/oo-config-zaio.yml @@ -0,0 +1,13 @@ +#!/usr/bin/ansible-playbook +--- +- hosts: localhost +  gather_facts: no +  vars: +    g_server: http://localhost/zabbix/api_jsonrpc.php +    g_user: Admin +    g_password: zabbix +  roles: +  - role: os_zabbix +    ozb_server: "{{ g_server }}" +    ozb_user: "{{ g_user }}" +    ozb_password: "{{ g_password }}" diff --git a/playbooks/adhoc/zabbix_setup/roles b/playbooks/adhoc/zabbix_setup/roles new file mode 120000 index 000000000..20c4c58cf --- /dev/null +++ b/playbooks/adhoc/zabbix_setup/roles @@ -0,0 +1 @@ +../../../roles
\ No newline at end of file | 
