mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-12 12:12:59 +01:00
61 lines
2.2 KiB
Django/Jinja
61 lines
2.2 KiB
Django/Jinja
{% set role = grains.id.split('_') | last %}
|
|
{% from 'common/maps/'~ role ~'.map.jinja' import docker with context %}
|
|
|
|
# Check if the service is enabled and append it's required containers
|
|
# to the list predefined by the role / minion id affix
|
|
{% macro append_containers(pillar_name, k, compare )%}
|
|
{% if salt['pillar.get'](pillar_name~':'~k, {}) != compare %}
|
|
{% from 'common/maps/'~k~'.map.jinja' import docker as d with context %}
|
|
{% for li in d['containers'] %}
|
|
{{ docker['containers'].append(li) }}
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% endmacro %}
|
|
|
|
{% set docker = salt['grains.filter_by']({
|
|
'*_'~role: {
|
|
'containers': docker['containers']
|
|
}
|
|
},grain='id', merge=salt['pillar.get']('docker')) %}
|
|
|
|
{% if role == 'eval' %}
|
|
{{ append_containers('master', 'grafana', 0) }}
|
|
{{ append_containers('static', 'fleet_master', 0) }}
|
|
{{ append_containers('master', 'wazuh', 0) }}
|
|
{{ append_containers('master', 'thehive', 0) }}
|
|
{{ append_containers('master', 'playbook', 0) }}
|
|
{{ append_containers('master', 'freq', 0) }}
|
|
{{ append_containers('master', 'domainstats', 0) }}
|
|
{% endif %}
|
|
|
|
{% if role == 'heavynode' %}
|
|
{{ append_containers('static', 'broversion', 'SURICATA') }}
|
|
{% endif %}
|
|
|
|
{% if role == 'mastersearch' %}
|
|
{{ append_containers('master', 'grafana', 0) }}
|
|
{{ append_containers('static', 'fleet_master', 0) }}
|
|
{{ append_containers('master', 'wazuh', 0) }}
|
|
{{ append_containers('master', 'thehive', 0) }}
|
|
{{ append_containers('master', 'playbook', 0) }}
|
|
{{ append_containers('master', 'freq', 0) }}
|
|
{{ append_containers('master', 'domainstats', 0) }}
|
|
{% endif %}
|
|
|
|
{% if role == 'master' %}
|
|
{{ append_containers('master', 'grafana', 0) }}
|
|
{{ append_containers('static', 'fleet_master', 0) }}
|
|
{{ append_containers('master', 'wazuh', 0) }}
|
|
{{ append_containers('master', 'thehive', 0) }}
|
|
{{ append_containers('master', 'playbook', 0) }}
|
|
{{ append_containers('master', 'freq', 0) }}
|
|
{{ append_containers('master', 'domainstats', 0) }}
|
|
{% endif %}
|
|
|
|
{% if role == 'searchnode' %}
|
|
{{ append_containers('master', 'wazuh', 0) }}
|
|
{% endif %}
|
|
|
|
{% if role == 'sensor' %}
|
|
{{ append_containers('static', 'broversion', 'SURICATA') }}
|
|
{% endif %} |