Evolved5G CLI prototype
Project description
Evolved5G CLI prototype
Free software: Apache Software License 2.0
Documentation: https://evolved5g_cli.readthedocs.io.
Features
Generate a new python NetApp from a template
Assist in connecting the new NetApp & repo with EVOLVED-5G CI/CD pipeline
SDK Libraries for interacting with the 5G-API
Assist in running pipelines for NetApps
Useful Information
The purpose of this guide is to help developers, in the EVOLVED-5G project scope, to develop a NetApp.
First, the partner to be interested in developing a NetApp must send an email to evolved5g@gmail.com to receive access to the GitHub organization.
The email must contain the GitHub username to be added to the GitHub organization.
You will receive an invitation which you will have to accept in order to have owner permissions in this organisation, which can be found here: https://github.com/EVOLVED-5G
Once the developer has access to the organisation, he will want to create a new repository from a template. To do this, a template repository has been created and will be visible in the organisation, which contains a tool called Cookiecutter along with some Python scripts. With such scripts, the developer will be asked to introduce some inputs necessary in order to create a new repository, such repository will contain all the necessary folder and files for the creation/development of a NetApp.
First of all, in order to be able to work with Cookiecutter, it is mandatory to install it on your local computer or virtual machine. Below are the commands that should be executed to work with Cookiecutter (these commands have been tested under Ubuntu, but it is also possible to use this tool on Windows and Mac (to be checked)).
This guide has been developed to work with Ubuntu OS, so all the commands have been only tested under Ubuntu, if other OS will be used, please have in mind some of this command will differ.
Pre-requisites
To create a new repository within the EVOLVED-5G organization it is mandatory to create an SSH key since the communication with the repository will be through SSH connection, to create the SSH key can be done as follows:
ssh-keygen -t rsa
Some inputs will be asked, you just need to press enter to leave it by default. If left as default the key pair generated can be found in the /home/ubuntu/.ssh directory of your ubuntu machine. To be able to work through SSH, you will need to copy the public key file you have generated and add it to your GitHub account, this can be done as follows:
cat ~/.ssh/id_rsa.pub
Copy the output to your clipboard
In your GitHub account go to “Settings” (up right) and then you will see a tab called “SSH and GPG Keys”
When you access this section, the first thing you will see is a button to create a new ssh key.
Click on that button, and the following screen will appear:
As you can see in the example image above, you have to enter the public key you have previously generated on your machine and copied in the “Key” section and add a title to it if you want to have your key list more organized. Click on the “Add SSH Key” button and you will be able to work with GitHub via SSH.
Finally, before running the SDK tool, you need to create a Personal Access Token on Github. This is necessary because to create a new repository you need to be authorized to do so and this is achieved via a token. Below it is explained how to create this token in GitHub:
Go back to your profile, to the Settings section, but this time look for the “Developer settings” button and click on it to see the following:
As you can see in the image above, on that page there are three buttons, we choose to press “Personal access tokens”. And we will see the top right button “Generate new token”. Click on this button and you will see the following page:
From the image you can add a note of what you want to use this token for, it is a matter of organization, as well as the days you want this token to last. Just below you will see that you are prompted to select the scope of the token, the recommendation is if you are going to use this token for the organization of EVOLVED-5G, select the maximum possible scope, i.e., select everything. #. When you have selected the scope of your token, click on the “Generate token” button, copy the token when it appears and save it in a txt file or similar, because once you leave this page, you will only see a list of tokens with the name you have given, as you can see below:
It is very important to copy and save your personal access token because you won’t be able to see it again. For more information about token creation please refer to GitHub
When you have done all the actions shown above, you are ready to run the SDK tool from your terminal and generate a new repository and your NetApp.
Installation
Stable release (NOT YET INTEGRATED)
To install Evolved5G_CLI, run this command in your terminal:
sudo apt update
supo apt install python3
sudo apt install python3-setuptools
pip install evolved5g
This is the preferred method to install Evolved5G_CLI, as it will always install the most recent stable release.
If you don’t have pip installed, this Python installation guide can guide you through the process.
From sources
The sources for Evolved5G_CLI can be downloaded from the Github repo.
You can either clone the public repository:
git clone git://github.com/EVOLVED-5G/SDK-CLI
Or download the tarball:
curl -OJL https://github.com/EVOLVED-5G/SDK-CLI/tarball/master
Once you have a copy of the source, you can install it with:
python setup.py install
Once it is installed you will be able to generate (create) a repository for your NetApp.
CLI Usage
Run the following command to access the documentation/help page and read about the various options
evolved5g
Generate
To generate a new NetApp project run the following command. You will be asked for some inputs such as the repoName, packageName etc
evolved5g generate
or to learn more about the available options
evolved5g generate --help
If you get an error saying cookiecutter command not found please do set the correct PATH as following:
In Linux:
Uninstall cookiecutter
# Add ~/.local/ to PATH
export PATH=$HOME/.local/bin:$PATH
source ~/.bash_profile
Install cookiecutter
In Windows:
> set PATH=%PATH%;C:\YOUR\PATH\
Then run the following command ssh -vT git@github.com to check the SSH connection is up and running without any problem. If the command “evolved5g generate” does not give you any problem, then automatically will start to ask you some inputs to create your NetApp repository. At some point you will be asked if you want to add a collaborator, if you choose NO, you will receive two more inputs regarding this, please just ignore it, press enter leaving it by default, no further action will be taken, no collaborator will be added, it is a bug which will be fixed any time soon.
Finally, when this command is executed, you will see something like the following image, in which you have to enter the values requested, like the example you can see between brackets, for the execution to be completed:
If you access GitHub once you have seen that output in your terminal, you will see that the repository has been successfully created:
It will create a specific branch (evolved5g) which will be used by the CI/CD for verification purposes. A dummy example (nginx server) will be created in both branches (master and evolved5g) which allow to directly run a pipeline using such branch i.e., build (following TID instructions) and check that it works. You will see a Dockerfile and inside the src folder a dummy html file as an example. Below can see the file structure created.
When the repository is created you will be at branch evolved5g, so the push must be done there, in case you want to work with master (branch) you have to execute git checkout master and then do the push (git push -u origin master), to know in which branch you are, just execute git branch.
SDK - Pipelines
This feature enables to run the pipelines from the SDK CLI. Hereafter, the examples on how to usage will be described.
Examples of usage
evolved5g run-pipeline --mode build --repo REPOSITORY_NAME
evolved5g run-pipeline --mode deploy --repo REPOSITORY_NAME
evolved5g run-pipeline --mode destroy --repo REPOSITORY_NAME
evolved5g check-pipeline --id YOUR_ID
The pipelines build, deploy or destroy will return an ID which can be used with the command check_pipeline to see how the NetApp is performing.
IMPORTANT
Please check your NetApp repository has a branch evolved5g, otherwise the pipelines will fail.
SDK - Libraries
At the current release the SDK contains two classes
LocationSubscriber: allows you to track devices and retrieve updates about their location.You can use LocationSubscriber to create subscriptions, where each one of them can be used to track a device.
QosAwareness: allows you to request QoS from a set of standardized values for better service experience (Ex. TCP_BASED / LIVE Streaming / CONVERSATIONAL_VOICE etc). You can create subscriptions where each one of them has specific QoS parameters. A notification is sent back to the net-app if the QoS targets can no longer be full-filled.
Examples of usage /Have a look at the code
Have a look at the examples folder for code samples on how to use the SDK Library.
Prerequisites / How to start
Install the requirements_dev.txt
pip install -r requirements_dev.txt
Make sure you have initiated the NEF_EMULATOR at url http://localhost:8888 (See here for instructions), you have logged in to the interface, clicked on the map and have started the simulation. Then run a webserver in order to capture the callback post requests from NEF EMULATOR: On the terminal run the following commands to initiaze the webserver.
export FLASK_APP=/home/user/evolved-5g/SDK-CLI/examples/api.py
export FLASK_ENV=development
python -m flask run --host=0.0.0.0
where FLASK_APP should point to the absolute path of the SDK-CLI/examples/api.py file. These commands will initialize a web server at http://127.0.0.1:5000/
Now you can run Location subscriber example You should be able to view the location updates, printed in the terminal that runs the FLASK webserver
Credits
This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.
History
0.6.0 (2021-06-12)
Added QoSAwareness to SDK. A class that allows to establish and monitor Non-GBR and GBR QoS targets
Support for the latest version of NEF (v1.2.0)
LocationSubscriber now only requires an external_id as user equipment identifier. IP_4 and IP_V6 have been removed from method create_subscription()
0.5.1 (2021-03-11)
Added class LocationSubscriber to SDK. A class that allows to get location monitoring reports from the 5G-API
Clean-up the code
New cli_helper.py class created to improve the code
cli.py class updated for better practices
Added new command options to interact with the pipelines
0.1.9 (2021-20-09)
Added version option to CLI
Changed ‘generate’ command to point to EVOLVED-5G/template at Github
Added template option to point to your user’s template. Used in tests by default pointing at skolome/netapp-ckcutter-template
0.1.4 (2021-17-09)
Added documentation to “generate” command
Added documentation to readthedocs
0.1.1 (2021-07-08)
Generate command more fleshed out
Added more detailed pytests
0.1.0 (2021-06-30)
First prototype implementation
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file evolved5g-0.6.0.tar.gz
.
File metadata
- Download URL: evolved5g-0.6.0.tar.gz
- Upload date:
- Size: 527.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.6.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 21ca46d0dbe771af5623fac6933353aef7290aba917c2c2ec8917c5d830aedac |
|
MD5 | 07b33332022e82bf47af7024f9bd21a0 |
|
BLAKE2b-256 | 52229bf3abe3b5cb96bbe882adb47eff588e8097f963746f98d188552e09c7de |
File details
Details for the file evolved5g-0.6.0-py2.py3-none-any.whl
.
File metadata
- Download URL: evolved5g-0.6.0-py2.py3-none-any.whl
- Upload date:
- Size: 140.5 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.6.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 301cb435e2196afbaf8e398c86c89dd9aef43bb382d689813671d7910657a716 |
|
MD5 | 2a856447aea014d01319c6731c7a44b2 |
|
BLAKE2b-256 | 6dad533ddb5c82e0e141e5dbe81fa579e77710f104feb731f9148f06068ca301 |