commit | 4a78f3d277c6988313f976f86d14f89c094f690d | [log] [tgz] |
---|---|---|
author | selvamuthukumaran_c <selvamuthukumaran_c@infosys.com> | Wed May 22 06:13:57 2019 +0000 |
committer | Matteo Scandolo <teo@opennetworking.org> | Wed May 22 19:11:44 2019 +0000 |
tree | 51ac3a23cf58cfe68bee33f55dec2e5e02822a1c | |
parent | ddaa32c8e43512bf4b69d7f027984be93a6559d8 [diff] |
[seba-608] - fetch tech profile from subscriber object Change-Id: I06e2fedae97fb2b3216c22482ce788ca2a435bcb
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"`