2016-11-24 12:06:41 +01:00
|
|
|
========================
|
|
|
|
|
Team and repository tags
|
|
|
|
|
========================
|
|
|
|
|
|
2017-08-03 14:32:04 +08:00
|
|
|
.. image:: https://governance.openstack.org/tc/badges/python-tackerclient.svg
|
|
|
|
|
:target: https://governance.openstack.org/tc/reference/tags/index.html
|
2016-11-24 12:06:41 +01:00
|
|
|
|
|
|
|
|
.. Change things from this point on
|
|
|
|
|
|
2018-02-22 17:14:22 +09:00
|
|
|
NFV Orchestration (Tacker) Client
|
|
|
|
|
=================================
|
|
|
|
|
|
|
|
|
|
CLI and Client Library for OpenStack Tacker
|
|
|
|
|
|
|
|
|
|
Installation
|
|
|
|
|
============
|
|
|
|
|
|
|
|
|
|
**Note:** The paths we are using for configuration files in these steps
|
|
|
|
|
are with reference to Ubuntu Operating System. The paths may vary for
|
|
|
|
|
other Operating Systems.
|
|
|
|
|
|
|
|
|
|
The branch_name which is used in commands, specify the branch_name
|
|
|
|
|
as stable/<branch> for any stable branch installation. For eg:
|
|
|
|
|
stable/queens, stable/pike. If unspecified the default will be
|
|
|
|
|
master branch.
|
|
|
|
|
|
2018-03-08 23:03:28 +09:00
|
|
|
Using python install
|
|
|
|
|
--------------------
|
2018-07-23 07:47:58 -05:00
|
|
|
Clone python-tackerclient repository.
|
2018-02-22 17:14:22 +09:00
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
2018-03-08 23:03:28 +09:00
|
|
|
$ cd ~/
|
|
|
|
|
$ git clone https://github.com/openstack/python-tackerclient -b <branch_name>
|
2018-02-22 17:14:22 +09:00
|
|
|
|
|
|
|
|
|
2018-07-23 07:47:58 -05:00
|
|
|
Install python-tackerclient.
|
2018-02-22 17:14:22 +09:00
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
2018-03-08 23:03:28 +09:00
|
|
|
$ cd python-tackerclient
|
|
|
|
|
$ sudo python setup.py install
|
2018-02-22 17:14:22 +09:00
|
|
|
|
|
|
|
|
|
2018-03-08 23:03:28 +09:00
|
|
|
Using pip
|
|
|
|
|
---------
|
|
|
|
|
|
|
|
|
|
You can also install the latest version by using ``pip`` command:
|
|
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
|
|
|
|
$ pip install python-tackerclient
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Or, if it is needed to install ``python-tackerclient`` from master branch,
|
|
|
|
|
type
|
2018-02-22 17:14:22 +09:00
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
2018-03-08 23:03:28 +09:00
|
|
|
$ pip install git+https://github.com/openstack/python-tackerclient.git
|
2018-02-22 17:14:22 +09:00
|
|
|
|
|
|
|
|
|
|
|
|
|
More Information
|
|
|
|
|
================
|
|
|
|
|
|
2019-04-23 13:44:53 +08:00
|
|
|
* Python-tackerclient documentation: https://docs.openstack.org/python-tackerclient/latest/
|
|
|
|
|
* Tacker Documentation: https://docs.openstack.org/tacker/latest/
|
2018-03-08 23:03:28 +09:00
|
|
|
* Tacker Wiki: https://wiki.openstack.org/wiki/Tacker
|
2018-06-28 14:11:29 +08:00
|
|
|
* Release Notes: https://docs.openstack.org/releasenotes/python-tackerclient
|