-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1348 from GlobalNOC/2.0.14-dev
2.0.14
- Loading branch information
Showing
50 changed files
with
1,672 additions
and
593 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,92 @@ | ||
MYSQL_PASSWORD= | ||
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 | ||
|
||
|
||
# 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 | ||
NSO_HOST= | ||
NSO_PASSWORD= | ||
NSO_USERNAME= | ||
|
||
|
||
# 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
NAME= oess-core | ||
VERSION = 2.0.13 | ||
VERSION = 2.0.14 | ||
|
||
rpm: dist | ||
rpmbuild -ta dist/$(NAME)-$(VERSION).tar.gz | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
NAME= oess-frontend | ||
VERSION = 2.0.13 | ||
VERSION = 2.0.14 | ||
|
||
rpm: dist | ||
rpmbuild -ta dist/$(NAME)-$(VERSION).tar.gz | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.