-
Notifications
You must be signed in to change notification settings - Fork 25
/
.env.example
100 lines (85 loc) · 2.15 KB
/
.env.example
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
OESS_VERSION=2.0.13
# Default root password set for installed MySQL Server.
#
MYSQL_ROOT_PASSWORD=test
#
# Default password set for installed RabbitMQ Server.
#
RABBITMQ_DEFAULT_PASS=guest
# Authentication details to MySQL Server.
#
MYSQL_USER=root
MYSQL_PASS=test
MYSQL_HOST=localhost
MYSQL_PORT=3306
MYSQL_DATABASE=oess
# Authentication details for RabbitMQ Server.
#
RABBITMQ_USER=guest
RABBITMQ_PASS=guest
RABBITMQ_HOST=rabbitmq
RABBITMQ_PORT=5672
RABBITMQ_VHOST=/
# Email notifications
#
SMTP_FROM_ADDR=oess@localhost
SMTP_FROM_NAME=OESS Notifier
SMTP_IMAGE_URL=http://localhost:8080/oess/notification-img
MAILHOST=localhost
# Optional: WebAPI details for GlobalNOC TSDS instance; Is used to
# store time series data like network statistics for connections.
#
# TSDS_USERNAME=
# TSDS_PASSWORD=
# TSDS_URL=
# TSDS_REALM=
# OESS password for `admin` user
#
OESS_PASSWORD=
#
# Base OESS URL. Required to properly set frontend URLs
#
OESS_BASE_URL=http://localhost:8080/oess
#
# Used as ASN for OESS side of all VRF peerings.
#
OESS_LOCAL_ASN=55038
#
# Southbound interface to network devices. Options:
# openflow: deprecated
# vpn-mpls: netconf provisioned l2vpn, l2ccc, l3vpn (Juniper MX)
# evpn-vxlan: netconf provisioned vxlan (Juniper QFX)
# nso: nso based southbound
# nso+vpn-mpls: runs both vpn-mpls and nso southbounds simultaneously
#
OESS_NETWORK_TYPE=vpn-mpls
#
# Email used to receive administrative notifications
#
# OESS_ADMIN_EMAIL=root@localhost
#
# Email address used to receive endpoint approval requests
#
# OESS_APPROVAL_EMAIL=root@localhost
# Authentication details for NETCONF connection to network devices. Is
# required for vpn-mpls, evpn-vxlan, and nso+vpn-mpls
# OESS_NETWORK_TYPEs.
#
NETCONF_USERNAME=
NETCONF_PASSWORD=
#
# Interval on which OESS evaluates and resolves difference between
# expected and actual network configuration.
#
NETCONF_DIFF_INTERVAL=60
# Authentication details for NSO REST API. Is required for nso
# OESS_NETWORK_TYPEs.
#
# NSO_USERNAME=
# NSO_PASSWORD=
# NSO_HOST=
#
# Interval on which OESS evaluates and resolves difference between
# expected and actual network configuration.
#
# NSO_DIFF_INTERVAL=60