mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-06 09:12:45 +01:00
63 lines
1.9 KiB
Plaintext
63 lines
1.9 KiB
Plaintext
# Copyright Security Onion Solutions LLC and/or licensed to Security Onion Solutions LLC under one
|
|
# or more contributor license agreements. Licensed under the Elastic License 2.0 as shown at
|
|
# https://securityonion.net/license; you may not use this file except in compliance with the
|
|
# Elastic License 2.0.
|
|
|
|
{% from 'allowed_states.map.jinja' import allowed_states %}
|
|
{% if sls.split('.')[0] in allowed_states %}
|
|
{% from 'vars/globals.map.jinja' import GLOBALS %}
|
|
{% from 'docker/docker.map.jinja' import DOCKER %}
|
|
|
|
|
|
include:
|
|
- pcap.config
|
|
- pcap.sostatus
|
|
|
|
so-steno:
|
|
docker_container.running:
|
|
- image: {{ GLOBALS.registry_host }}:5000/{{ GLOBALS.image_repo }}/so-steno:{{ GLOBALS.so_version }}
|
|
- start: True
|
|
- network_mode: host
|
|
- privileged: True
|
|
- binds:
|
|
- /opt/so/conf/steno/certs:/etc/stenographer/certs:rw
|
|
- /opt/so/conf/steno/config:/etc/stenographer/config:rw
|
|
- /nsm/pcap:/nsm/pcap:rw
|
|
- /nsm/pcapindex:/nsm/pcapindex:rw
|
|
- /nsm/pcaptmp:/tmp:rw
|
|
- /opt/so/log/stenographer:/var/log/stenographer:rw
|
|
{% if DOCKER.containers['so-steno'].custom_bind_mounts %}
|
|
{% for BIND in DOCKER.containers['so-steno'].custom_bind_mounts %}
|
|
- {{ BIND }}
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% if DOCKER.containers['so-steno'].extra_hosts %}
|
|
- extra_hosts:
|
|
{% for XTRAHOST in DOCKER.containers['so-steno'].extra_hosts %}
|
|
- {{ XTRAHOST }}
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% if DOCKER.containers['so-steno'].extra_env %}
|
|
- environment:
|
|
{% for XTRAENV in DOCKER.containers['so-steno'].extra_env %}
|
|
- {{ XTRAENV }}
|
|
{% endfor %}
|
|
{% endif %}
|
|
- watch:
|
|
- file: stenoconf
|
|
- require:
|
|
- file: stenoconf
|
|
|
|
delete_so-steno_so-status.disabled:
|
|
file.uncomment:
|
|
- name: /opt/so/conf/so-status/so-status.conf
|
|
- regex: ^so-steno$
|
|
|
|
{% else %}
|
|
|
|
{{sls}}_state_not_allowed:
|
|
test.fail_without_changes:
|
|
- name: {{sls}}_state_not_allowed
|
|
|
|
{% endif %}
|