main.yml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. ---
  2. - fail:
  3. msg: "Zabbix config is not yet supported on atomic hosts"
  4. when: is_atomic
  5. - name: Main List all templates
  6. zbx_template:
  7. zbx_server: "{{ ozb_server }}"
  8. zbx_user: "{{ ozb_user }}"
  9. zbx_password: "{{ ozb_password }}"
  10. state: list
  11. register: templates
  12. - include_vars: template_heartbeat.yml
  13. tags:
  14. - heartbeat
  15. - include_vars: template_os_linux.yml
  16. tags:
  17. - linux
  18. - include_vars: template_docker.yml
  19. tags:
  20. - docker
  21. - include_vars: template_openshift_master.yml
  22. tags:
  23. - openshift_master
  24. - include_vars: template_openshift_node.yml
  25. tags:
  26. - openshift_node
  27. - include_vars: template_ops_tools.yml
  28. tags:
  29. - ops_tools
  30. - include_vars: template_app_zabbix_server.yml
  31. tags:
  32. - zabbix_server
  33. - include_vars: template_app_zabbix_agent.yml
  34. tags:
  35. - zabbix_agent
  36. - include_vars: template_performance_copilot.yml
  37. tags:
  38. - pcp
  39. - include_vars: template_aws.yml
  40. tags:
  41. - aws
  42. - include_vars: template_zagg_server.yml
  43. tags:
  44. - zagg_server
  45. - name: Include Template Heartbeat
  46. include: ../../lib_zabbix/tasks/create_template.yml
  47. vars:
  48. template: "{{ g_template_heartbeat }}"
  49. server: "{{ ozb_server }}"
  50. user: "{{ ozb_user }}"
  51. password: "{{ ozb_password }}"
  52. tags:
  53. - heartbeat
  54. - name: Include Template os_linux
  55. include: ../../lib_zabbix/tasks/create_template.yml
  56. vars:
  57. template: "{{ g_template_os_linux }}"
  58. server: "{{ ozb_server }}"
  59. user: "{{ ozb_user }}"
  60. password: "{{ ozb_password }}"
  61. tags:
  62. - linux
  63. - name: Include Template docker
  64. include: ../../lib_zabbix/tasks/create_template.yml
  65. vars:
  66. template: "{{ g_template_docker }}"
  67. server: "{{ ozb_server }}"
  68. user: "{{ ozb_user }}"
  69. password: "{{ ozb_password }}"
  70. tags:
  71. - docker
  72. - name: Include Template Openshift Master
  73. include: ../../lib_zabbix/tasks/create_template.yml
  74. vars:
  75. template: "{{ g_template_openshift_master }}"
  76. server: "{{ ozb_server }}"
  77. user: "{{ ozb_user }}"
  78. password: "{{ ozb_password }}"
  79. tags:
  80. - openshift_master
  81. - name: Include Template Openshift Node
  82. include: ../../lib_zabbix/tasks/create_template.yml
  83. vars:
  84. template: "{{ g_template_openshift_node }}"
  85. server: "{{ ozb_server }}"
  86. user: "{{ ozb_user }}"
  87. password: "{{ ozb_password }}"
  88. tags:
  89. - openshift_node
  90. - name: Include Template Ops Tools
  91. include: ../../lib_zabbix/tasks/create_template.yml
  92. vars:
  93. template: "{{ g_template_ops_tools }}"
  94. server: "{{ ozb_server }}"
  95. user: "{{ ozb_user }}"
  96. password: "{{ ozb_password }}"
  97. tags:
  98. - ops_tools
  99. - name: Include Template App Zabbix Server
  100. include: ../../lib_zabbix/tasks/create_template.yml
  101. vars:
  102. template: "{{ g_template_app_zabbix_server }}"
  103. server: "{{ ozb_server }}"
  104. user: "{{ ozb_user }}"
  105. password: "{{ ozb_password }}"
  106. tags:
  107. - zabbix_server
  108. - name: Include Template App Zabbix Agent
  109. include: ../../lib_zabbix/tasks/create_template.yml
  110. vars:
  111. template: "{{ g_template_app_zabbix_agent }}"
  112. server: "{{ ozb_server }}"
  113. user: "{{ ozb_user }}"
  114. password: "{{ ozb_password }}"
  115. tags:
  116. - zabbix_agent
  117. - name: Include Template Performance Copilot
  118. include: ../../lib_zabbix/tasks/create_template.yml
  119. vars:
  120. template: "{{ g_template_performance_copilot }}"
  121. server: "{{ ozb_server }}"
  122. user: "{{ ozb_user }}"
  123. password: "{{ ozb_password }}"
  124. tags:
  125. - pcp
  126. - name: Include Template AWS
  127. include: ../../lib_zabbix/tasks/create_template.yml
  128. vars:
  129. template: "{{ g_template_aws }}"
  130. server: "{{ ozb_server }}"
  131. user: "{{ ozb_user }}"
  132. password: "{{ ozb_password }}"
  133. tags:
  134. - aws
  135. - name: Include Template Zagg Server
  136. include: ../../lib_zabbix/tasks/create_template.yml
  137. vars:
  138. template: "{{ g_template_zagg_server }}"
  139. server: "{{ ozb_server }}"
  140. user: "{{ ozb_user }}"
  141. password: "{{ ozb_password }}"
  142. tags:
  143. - zagg_server