tree: e7144a27d110db08e044eb5c1c0849610147c755 [path history] [tgz]
  1. README.md
  2. __init__.py
  3. dummygatekeeper.py
src/emuvim/api/sonata/README.md

SONATA dummy gatekeeper API:

Requirements

  • uuid
  • hashlib
  • zipfile
  • yaml
  • docker-py
  • flask
  • flask_restful

Run REST API in standalone mode (without emulator):

  • python src/emuvim/api/sonata/dummygatekeeper.py

Run emulator example with active SONATA dummy gatekeeper:

The example starts a small network with two data centers.

  • sudo python src/emuvim/examples/sonata_y1_demo_topology_1.py

Upload a package (*.son) file:

To upload the file sonata-demo-docker.son (can be found in son-emu/misc/) do:

  • curl -i -X POST -F package=@sonata-demo-docker.son http://127.0.0.1:5000/packages

To list all uploaded packages do:

  • curl http://127.0.0.1:5000/packages

To instantiate (start) a service do:

  • Specific service: curl -X POST http://127.0.0.1:5000/instantiations -d "{\"service_uuid\":\"59446b64-f941-40a8-b511-effb0512c21b\"}"
  • Last uploaded service (makes manual tests easier): curl -X POST http://127.0.0.1:5000/instantiations -d "{}"

To list all running services do:

  • curl http://127.0.0.1:5000/instantiations

API definition

This page describes the dummy gatekeeper API. This gatekeeper fakes the original platform gatekeeper during development SDK tools like son-push.

It is also able to deploy our example service package (not any arbitrary service package!) in the emulator for the Y1 demo.

Note: This API should converge to the API of the original GK as much as possible!

REST API:

Cleanup

The dummy GK will store some files in your tmp folder in order to fake "catalogues" and "repositories" etc.

  • sudo rm -r /tmp/son-dummy-gk/