diff options
author | Bartosz Gardziejewski <bartosz.gardziejewski@nokia.com> | 2021-04-14 14:41:07 +0200 |
---|---|---|
committer | Bartosz Gardziejewski <bartosz.gardziejewski@nokia.com> | 2021-04-14 14:41:09 +0200 |
commit | 8a7f37abfc22f4187500fd54687fe3dd6b793383 (patch) | |
tree | 7acc83f6fe14fab804c6f534489ae475de59d742 | |
parent | 6b9990df40f2fac4184ae40fe4d0b441241da712 (diff) |
Update README
Signed-off-by: Bartosz Gardziejewski <bartosz.gardziejewski@nokia.com>
Change-Id: Ic2786c9d06fb7e049e03a1f1feaee104c4dea72f
Issue-ID: INT-1869
-rw-r--r-- | README.md | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..626eadf --- /dev/null +++ b/README.md @@ -0,0 +1,41 @@ +# NF Simulator + +Goal of this project is to simulate `Network Function`. + + +## Simulator components +This simulator is consist of projects (components): +- avcn-manager +- netconf-server +- pm-https-server +- ves-client + +Each of these projects can be developed, build and run independently. +Nonetheless, in order to achieve goal of this simulator, +these components needs to be connected and interact. + +### Components interaction flow +*netconf-server -> Message Queue (Kafka) -> avcn-server -> ves-client -> ves* + +Above flow shows how components are connected with each other. +The goal of that connected components is to propagate information +about network element configuration change (netconf server) to ONAP (ves). + +More examples and use cases are shown in `sanitycheck` directory. + +For more details about each project see *README* files in projects directories. + + +## Starting and Testing simulator + +To start whole system (simulator) locally docker compose is needed. +Description on how to do that, with all needed docker-compose files, +is located in `sanitycheck` directory. +This directory contains also description of **test scenarios**. +All that descriptions are located in *README* file. + + +## Simulator CLI + +This simulator has also CLI that can be used to communicate with running components. +Description on how to use this tool is located in `simulator-cli` directory. |