-
Notifications
You must be signed in to change notification settings - Fork 1
/
.env
70 lines (63 loc) · 2.35 KB
/
.env
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# container images
API_PROXY_IMAGE=nginx
BATFISH_IMAGE=ghcr.io/ool-mddo/batfish
BATFISH_WRAPPER_IMAGE=ghcr.io/ool-mddo/batfish-wrapper
BGP_POLICY_PARSER_IMAGE=ghcr.io/ool-mddo/bgp-policy-parser
FISH_TRACER_IMAGE=ghcr.io/ool-mddo/fish-tracer
MODEL_CONDUCTOR_IMAGE=ghcr.io/ool-mddo/model-conductor
NETOMOX_EXP_IMAGE=ghcr.io/ool-mddo/netomox-exp
NETOVIZ_IMAGE=ghcr.io/ool-mddo/netoviz
STATE_CONDUCTOR_IMAGE=ghcr.io/ool-mddo/state-conductor
# container tags (versions)
API_PROXY_IMAGE_TAG=1.21
BATFISH_IMAGE_TAG=v0.3.0
BATFISH_WRAPPER_IMAGE_TAG=v1.1.1
BGP_POLICY_PARSER_IMAGE_TAG=v0.7.0
FISH_TRACER_IMAGE_TAG=v1.0.0
MODEL_CONDUCTOR_IMAGE_TAG=v1.12.0
NETOMOX_EXP_IMAGE_TAG=v1.13.0
NETOVIZ_IMAGE_TAG=v0.7.0
STATE_CONDUCTOR_IMAGE_TAG=v0.4.0
# target (container) port number
BATFISH_WRAPPER_PORT=5000
NETOMOX_EXP_PORT=9292
MODEL_CONDUCTOR_PORT=9292
# publish port number
API_PROXY_PUB_PORT=15000
# batfish-wrapper log level ([debug, info, warning, error, critical])
BATFISH_WRAPPER_PYBATFISH_LOG_LEVEL=warning
BATFISH_WRAPPER_LOG_LEVEL=info
# netomox-exp log level ([debug, info, warn, error, fatal])
NETOMOX_LOG_LEVEL=error
NETOMOX_EXP_LOG_LEVEL=warn
# model-conductor log level ([debug, info, warn, error, fatal])
MODEL_CONDUCTOR_LOG_LEVEL=info
# visualize/grafana config ([trace, debug, info, warn/warning, error, critical/fatal])
GRAFANA_LOG_LEVEL=error
# visualize/prometheus log level ([debug, info, warn, error])
PROMETHEUS_LOG_LEVEL=warn
# visualize/state-conductor log level ([debug, info, warning, error, critical])
STATE_CONDUCTOR_LOG_LEVEL=debug
# for fish-tracer (entry point = api-proxy)
# Specify your docker-host IP or HOSTNAME (other than localhost and 127.0.0.1)
FISH_TRACER_BASE_HOST=Set-IP-or-FQDN
# local shared directories
SHARED_CONFIGS_DIR=configs
SHARED_QUERIES_DIR=queries
SHARED_TOPOLOGIES_DIR=topologies
SHARED_TTP_DIR=ttp
SHARED_USECASES_DIR=usecases
# shared directories inside each containers
# (container-inteernal path to mount local shared directories)
MDDO_DIR=/mddo
MDDO_CONFIGS_DIR=/mddo/configs
MDDO_QUERIES_DIR=/mddo/queries
MDDO_TOPOLOGIES_DIR=/mddo/topologies
MDDO_USECASES_DIR=/mddo/usecases
# for bgp-policy_parser
MDDO_TTP_DIR=/mddo/ttp
MDDO_TTP_CONFIGS_DIR=/mddo/ttp/configs
MDDO_TTP_OUTPUTS_DIR=/mddo/ttp/outputs
MDDO_BGP_POLICIES_DIR=/mddo/ttp/bgp_policies
# for demo scenario script (to access api from docker host)
API_HOST=localhost:${API_PROXY_PUB_PORT}