Skip to content

Commit

Permalink
Merge pull request #20 from amlight/fix/update_readme
Browse files Browse the repository at this point in the history
[Fix] Updated README.rst and bumped 2022.1.0
  • Loading branch information
viniarck authored Feb 10, 2022
2 parents 10fd6dc + 9654c24 commit 647b709
Show file tree
Hide file tree
Showing 5 changed files with 119 additions and 5 deletions.
38 changes: 38 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
#########
Changelog
#########
All notable changes to the sdntrace_cp NApp will be documented in this file.

[UNRELEASED] - Under development
********************************
Added
=====

Changed
=======

Deprecated
==========

Removed
=======

Fixed
=====

Security
========

[2022.1.0] - 2022-02-08
***********************

Added
=====
- Added ``FIND_CIRCUITS_IN_FLOWS`` settings option to enable or disable the feature to trigger the ``find_circuits`` routine
- Enhanced and standardized setup.py `install_requires` to install pinned dependencies
- [Issue 5] Add setup.py and requirements

Fixed
=====
- [Issue 6] Fix comparison of endpoints when an endpoint does not provide all necessary fields
- [Issue 8] Change log level of run_traces results to debug
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) 2017 FIU/AmLight Team

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
57 changes: 56 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,61 @@
|Tag| |License|

.. raw:: html

<div align="center">
<h1><code>amlight/sdntrace_cp</code></h1>

<strong> Napp that traces OpenFlow paths in the control plane</strong>

<h3><a href="https://kytos-ng.github.io/api/sdntrace_cp.html">OpenAPI Docs</a></h3>
</div>


Overview
========
Run tracepaths on OpenFlow in the Control Plane

Installing
==========

To install this NApp, first, make sure to have the same venv activated as you have ``kytos`` installed on:

.. code:: shell
$ git clone https://github.com/amlight/sdntrace_cp.git
$ cd sdntrace_cp
$ python setup.py develop
Requirements
============
============

- `amlight/flow_stats <https://github.com/amlight/flow_stats>`_
- `amlight/scheduler <https://github.com/amlight/scheduler>`_


Events
======

Subscribed
----------

- ``amlight/flow_stats.flows_updated``


.. TAGs
.. |License| image:: https://img.shields.io/github/license/amlight/sdntrace_cp.svg
:target: https://github.com/amlight/sdntrace_cp/blob/master/LICENSE
.. |Build| image:: https://scrutinizer-ci.com/g/amlight/sdntrace_cp/badges/build.png?b=master
:alt: Build status
:target: https://scrutinizer-ci.com/g/amlight/sdntrace_cp/?branch=master
.. |Coverage| image:: https://scrutinizer-ci.com/g/amlight/sdntrace_cp/badges/coverage.png?b=master
:alt: Code coverage
:target: https://scrutinizer-ci.com/g/amlight/sdntrace_cp/?branch=master
.. |Quality| image:: https://scrutinizer-ci.com/g/amlight/sdntrace_cp/badges/quality-score.png?b=master
:alt: Code-quality score
:target: https://scrutinizer-ci.com/g/amlight/sdntrace_cp/?branch=master
.. |Stable| image:: https://img.shields.io/badge/stability-stable-green.svg
:target: https://github.com/amlight/sdntrace_cp
.. |Tag| image:: https://img.shields.io/github/tag/amlight/sdntrace_cp.svg
:target: https://github.com/amlight/sdntrace_cp/tags
6 changes: 3 additions & 3 deletions kytos.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
"username": "amlight",
"name": "sdntrace_cp",
"description": "Run tracepaths on OpenFlow in the Control Plane",
"version": "1.0.0",
"version": "2022.1.0",
"napp_dependencies": ["amlight/flow_stats", "amlight/scheduler"],
"license": "",
"license": "MIT",
"tags": [],
"url": ""
"url": "https://github.com/amlight/sdntrace_cp.git"
}
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

NAPP_NAME = 'sdntrace_cp'
NAPP_USERNAME = 'amlight'
NAPP_VERSION = '1.0.0'
NAPP_VERSION = '2022.1.0'

# Kytos var folder
VAR_PATH = BASE_ENV / 'var' / 'lib' / 'kytos'
Expand Down

0 comments on commit 647b709

Please sign in to comment.