commit | 4a8d6684c0ed578c697cbe35cce597729fe078ba | [log] [tgz] |
---|---|---|
author | Matteo Scandolo <matteo.scandolo@gmail.com> | Fri Nov 22 17:34:52 2019 -0800 |
committer | Matteo Scandolo <matteo.scandolo@gmail.com> | Fri Nov 22 17:34:54 2019 -0800 |
tree | 24b361efeac6802fc4e5a13c11d03e1f64a342d0 | |
parent | 2ec542c77a1fe3f56ca3adc0f95615929077c7b4 [diff] |
Adding Code of Conduct Change-Id: Ia234f71f8e0a13d9f2e06c5070df494b8452ce7f
This service acts as a gateway between ONOS and XOS. ONOS apps expect to pull in deployment information using the SADIS service in a particular format. The SADIS server listens to REST requests from ONOS, and when it receives a request it looks up the appropriate object in XOS and delivers it back to ONOS in the expected format.
docker build -t opencord/sadis-server .
docker run --rm --name sadis --env "SADISSERVER_PORT=4245" --env "SADISSERVER_XOS=10.90.0.101:30006" -p 4245:4245 opencord/sadis-server
sadis.json
for an example.SADISSERVER
Port int `default:"8000" desc:"port on which to listen for requests"` Xos string `default:"127.0.0.1:8181" desc:"connection string with which to connect to XOS"` Username string `default:"admin@opencord.org" desc:"username with which to connect to XOS"` Password string `default:"letmein" desc:"password with which to connect to XOS"` LogLevel string `default:"info" envconfig:"LOG_LEVEL" desc:"detail level for logging"` LogFormat string `default:"text" envconfig:"LOG_FORMAT" desc:"log output format, text or json"`