Adding Code of Conduct

Change-Id: Ia234f71f8e0a13d9f2e06c5070df494b8452ce7f
1 file changed
tree: 24b361efeac6802fc4e5a13c11d03e1f64a342d0
  1. .gitignore
  2. .gitreview
  3. CODE_OF_CONDUCT.md
  4. Dockerfile
  5. Gopkg.lock
  6. Gopkg.toml
  7. Makefile
  8. README.md
  9. VERSION
  10. handlers.go
  11. sadis.json
  12. sadisServer.go
  13. sadisTypes.go
  14. vendor/
README.md

SADIS Server


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.

Build

  • docker build -t opencord/sadis-server .

Run

  • docker run --rm --name sadis --env "SADISSERVER_PORT=4245" --env "SADISSERVER_XOS=10.90.0.101:30006" -p 4245:4245 opencord/sadis-server
  • Pass in the location of the XOS REST endpoint using the SADISSERVER_XOS environment variable
  • The SADIS server will start listening on the configured port for connections from the SADIS ONOS app
  • Configure the SADIS app with the URL of the SADIS server. See sadis.json for an example.

Note:

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"`