commit | 04428fdd76112c4902dd8ec3f8bc5dfd3a99145c | [log] [tgz] |
---|---|---|
author | Matteo Scandolo <matteo.scandolo@gmail.com> | Wed Apr 17 14:22:30 2019 -0700 |
committer | Andy Bavier <andy@opennetworking.org> | Wed Apr 17 22:03:00 2019 +0000 |
tree | d0cdb309191ae1095b07722c70ec11e5cc9f88ee | |
parent | 6067656ca3640218ca80f4a2c309e62100e83097 [diff] |
Returning tech profile id Change-Id: Ic56d0ce165c78c4bd8b51dde4ab3fbe72628c48c
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"`