From: garciadeblas Date: Mon, 13 Jan 2020 22:53:09 +0000 (+0000) Subject: README.md: updated installation procedure, use of osmclient as library X-Git-Tag: v7.0.1rc2~1^2~3 X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2Fosmclient.git;a=commitdiff_plain;h=404b4ea6e3fa2adf4349883488dadca4862dcaf7 README.md: updated installation procedure, use of osmclient as library Change-Id: I4d81e08bc5bf9e0888e53ebce9e49e3d7bc02a3d Signed-off-by: garciadeblas --- diff --git a/README.md b/README.md index bc1f89c..1791594 100644 --- a/README.md +++ b/README.md @@ -1,38 +1,71 @@ + # python-osmclient -A python client for osm orchestration -A test commit +OSM client library and console script -# Installation +## Installation + +### From git-repo -## python-osmclient -### Install dependencies ```bash -sudo apt-get install python-dev libcurl4-gnutls-dev python-pip libgnutls-dev python-prettytable   -sudo pip install pycurl +# Ubuntu 18.04 pre-requirements +sudo apt-get install python3-pip libcurl4-openssl-dev libssl-dev +# CentOS pre-requirements +# sudo yum install python3-pip libcurl-devel gnutls-devel +sudo -H python3 -m pip install python-magic +# Install OSM Information model +sudo -H python3 -m pip install git+https://osm.etsi.org/gerrit/osm/IM --upgrade +# Install OSM client from the git repo. +# You can install the latest client from master branch in this way: +sudo -H python3 -m pip install git+https://osm.etsi.org/gerrit/osm/osmclient +# You could also install a specific tag/version in this way +# sudo -H python3 -m pip install git+https://osm.etsi.org/gerrit/osm/osmclient@v7.0.0rc1 ``` -### Install python-osmclient - sudo pip install git+https://github.com/mfmarche/python-osmclient - +### From cloned repo (for developers) -## Snap -```bash -apt install snapd -snap install osmclient --channel=beta ``` +# Ubuntu 18.04 pre-requirements +sudo apt-get install python3-pip libcurl4-openssl-dev libssl-dev +# Centos pre-requirements +# sudo yum install python3-pip libcurl-devel gnutls-devel +sudo -H python3 -m pip install python-magic +# Install OSM Information model +sudo -H python3 -m pip install git+https://osm.etsi.org/gerrit/osm/IM --upgrade +# Clone the osmclient repo and install OSM client from the git repo. +git clone https://osm.etsi.org/gerrit/osm/osmclient +cd osmclient +python3 -m pip install --user -e . +# logout and login so that PATH can be updated. Executable osm will be found in /home/ubuntu/.local/bin +``` + +## Setup -# Setup -Set the OSM_HOSTNAME variable to the host of the osm server. +Set the OSM_HOSTNAME variable to the host of the OSM server (default: localhost). -Example ```bash -localhost$ export OSM_HOSTNAME=:8008 +localhost$ export OSM_HOSTNAME= ``` -# Examples +## Examples + +### upload vnfd -## upload vnfd ```bash localhost$ osm upload-package ubuntu_xenial_vnf.tar.gz {'transaction_id': 'ec12af77-1b91-4c84-b233-60f2c2c16d14'} @@ -44,7 +77,8 @@ localhost$ osm vnfd-list +--------------------+--------------------+ ``` -## upload nsd +### upload nsd + ```bash localhost$ osm upload-package ubuntu_xenial_ns.tar.gz {'transaction_id': 'b560c9cb-43e1-49ef-a2da-af7aab24ce9d'} @@ -55,7 +89,8 @@ localhost$ osm nsd-list | ubuntu_xenial_nsd | ubuntu_xenial_nsd | +-------------------+-------------------+ ``` -## vim-list + +### vim-list ```bash localhost$ osm vim-list @@ -66,8 +101,8 @@ localhost$ osm vim-list +-------------+-----------------+--------------------------------------+ ``` +### instantiate ns -## instantiate ns ```bash localhost$ osm ns-create ubuntu_xenial_nsd testns openstack-site {'success': ''} @@ -79,7 +114,58 @@ localhost$ osm ns-list +------------------+--------------------------------------+-------------------+--------------------+---------------+ ``` -# Bash Completion -python-osmclient uses [click](http://click.pocoo.org/5/). You can setup bash completion by putting this in your .bashrc: +## Using osmclient as a library to interact with OSM + +Assuming that you have installed python-osmclient package, it's pretty simple to write some Python code to interact with OSM. + +### Simple Python code to get the list of NS packages + +```python +from osmclient import client +from osmclient.common.exceptions import ClientException +hostname = "127.0.0.1" +myclient = client.Client(host=hostname, sol005=True) +resp = myclient.nsd.list() +print yaml.safe_dump(resp) +``` + +### Simple Python code to get the list of VNF packages from a specific user and project + +The code will print for each package a pretty table, then the full details in yaml + +```python +from osmclient import client +from osmclient.common.exceptions import ClientException +import yaml +from prettytable import PrettyTable +hostname = "127.0.0.1" +user = admin +password = admin +project = admin +kwargs = {} +if user is not None: + kwargs['user']=user +if password is not None: + kwargs['password']=password +if project is not None: + kwargs['project']=project +myclient = client.Client(host=hostname, sol005=True, **kwargs) +resp = myclient.vnfd.list() +print yaml.safe_dump(resp) +``` + +## Enable autocompletion + +You can enable autocompletion in OSM client by creating a file osm-complete.sh in the following way: + +```bash +mkdir -p $HOME/.bash_completion.d +_OSM_COMPLETE=source osm > $HOME/.bash_completion.d/osm-complete.sh +``` + +Then you can add the following to your $HOME/.bashrc file: + +```bash +. .bash_completion.d/osm-complete.sh +``` - eval "$(_OSM_COMPLETE=source osm)"