diff options
author | Thomas Wiest <twiest@redhat.com> | 2015-09-30 15:22:36 -0400 |
---|---|---|
committer | Thomas Wiest <twiest@redhat.com> | 2015-10-02 12:44:31 -0400 |
commit | e40b829103db88072c0e5fc759bff239cb214a43 (patch) | |
tree | c86ab69cda7d6a1402c779968bb20b41c8fd4012 /roles/os_zabbix/tasks | |
parent | fe5da92d3772802dc50d0bbe602e67cc3b5c7dec (diff) | |
download | openshift-e40b829103db88072c0e5fc759bff239cb214a43.tar.gz openshift-e40b829103db88072c0e5fc759bff239cb214a43.tar.bz2 openshift-e40b829103db88072c0e5fc759bff239cb214a43.tar.xz openshift-e40b829103db88072c0e5fc759bff239cb214a43.zip |
added Template Ops Tools
Diffstat (limited to 'roles/os_zabbix/tasks')
-rw-r--r-- | roles/os_zabbix/tasks/main.yml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/roles/os_zabbix/tasks/main.yml b/roles/os_zabbix/tasks/main.yml index 8347e9a61..28e900255 100644 --- a/roles/os_zabbix/tasks/main.yml +++ b/roles/os_zabbix/tasks/main.yml @@ -12,6 +12,7 @@ - include_vars: template_docker.yml - include_vars: template_openshift_master.yml - include_vars: template_openshift_node.yml +- include_vars: template_ops_tools.yml - name: Include Template Heartbeat include: ../../lib_zabbix/tasks/create_template.yml @@ -52,3 +53,11 @@ server: "{{ ozb_server }}" user: "{{ ozb_user }}" password: "{{ ozb_password }}" + +- name: Include Template Ops Tools + include: ../../lib_zabbix/tasks/create_template.yml + vars: + template: "{{ g_template_ops_tools }}" + server: "{{ ozb_server }}" + user: "{{ ozb_user }}" + password: "{{ ozb_password }}" |