Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4839860b73 | ||
|
|
28ab39e6fb | ||
|
|
a907bc2a34 | ||
|
|
05c98f7a20 | ||
|
|
2d6a97e84a |
@@ -1,14 +1,14 @@
|
||||
If you would like to contribute to the development of OpenStack, you must
|
||||
follow the steps in this page:
|
||||
|
||||
http://docs.openstack.org/infra/manual/developers.html
|
||||
https://docs.openstack.org/infra/manual/developers.html
|
||||
|
||||
If you already have a good understanding of how the system works and your
|
||||
OpenStack accounts are set up, you can skip to the development workflow
|
||||
section of this documentation to learn how changes to OpenStack should be
|
||||
submitted for review via the Gerrit tool:
|
||||
|
||||
http://docs.openstack.org/infra/manual/developers.html#development-workflow
|
||||
https://docs.openstack.org/infra/manual/developers.html#development-workflow
|
||||
|
||||
Pull requests submitted through GitHub will be ignored.
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
Style Commandments
|
||||
===============================================
|
||||
|
||||
Read the OpenStack Style Commandments http://docs.openstack.org/developer/hacking/
|
||||
Read the OpenStack Style Commandments https://docs.openstack.org/hacking/latest/
|
||||
|
||||
@@ -39,8 +39,8 @@ Karbor Mission Statement
|
||||
.. _Blueprints: https://blueprints.launchpad.net/python-karborclient
|
||||
.. _Bugs: https://bugs.launchpad.net/python-karborclient
|
||||
.. _Source: https://git.openstack.org/cgit/openstack/python-karborclient
|
||||
.. _Specs: http://docs.openstack.org/developer/karbor/specs/index.html
|
||||
.. _How to Contribute: http://docs.openstack.org/infra/manual/developers.html
|
||||
.. _Specs: https://docs.openstack.org/karbor/latest/specs/index.html
|
||||
.. _How to Contribute: https://docs.openstack.org/infra/manual/developers.html
|
||||
|
||||
|
||||
Python Karborclient
|
||||
@@ -62,7 +62,7 @@ Project status, bugs, and blueprints are tracked on Launchpad:
|
||||
|
||||
Developer documentation can be found here:
|
||||
|
||||
http://docs.openstack.org/developer/karbor
|
||||
https://docs.openstack.org/karbor/latest/
|
||||
|
||||
Additional resources are linked from the project wiki page:
|
||||
|
||||
|
||||
@@ -89,7 +89,7 @@ Python API
|
||||
None
|
||||
|
||||
CLI (python-karborclient)
|
||||
------------------------
|
||||
-------------------------
|
||||
|
||||
A new directory named osc will be created under /karborclient/osc
|
||||
for the ``OpenStackClient`` plugin and the commands mentioned above.
|
||||
@@ -158,7 +158,7 @@ OpenStack Client adoption list will be updated to include python-karborclient.
|
||||
References
|
||||
==========
|
||||
|
||||
http://docs.openstack.org/developer/python-openstackclient/commands.html
|
||||
https://docs.openstack.org/python-openstackclient/latest/
|
||||
|
||||
Appendix
|
||||
========
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
|
||||
"""oslo.i18n integration module.
|
||||
|
||||
See http://docs.openstack.org/developer/oslo.i18n/usage.html
|
||||
See https://docs.openstack.org/oslo.i18n/latest/user/usage.html
|
||||
|
||||
"""
|
||||
|
||||
|
||||
@@ -3,12 +3,12 @@
|
||||
# process, which may cause wedges in the gate later.
|
||||
pbr!=2.1.0,>=2.0.0 # Apache-2.0
|
||||
PrettyTable<0.8,>=0.7.1 # BSD
|
||||
keystoneauth1>=2.21.0 # Apache-2.0
|
||||
keystoneauth1!=3.0.0,>=2.21.0 # Apache-2.0
|
||||
requests>=2.14.2 # Apache-2.0
|
||||
simplejson>=2.2.0 # MIT
|
||||
Babel!=2.4.0,>=2.3.4 # BSD
|
||||
six>=1.9.0 # MIT
|
||||
osc-lib>=1.5.1 # Apache-2.0
|
||||
osc-lib>=1.7.0 # Apache-2.0
|
||||
oslo.utils>=3.20.0 # Apache-2.0
|
||||
oslo.log>=3.22.0 # Apache-2.0
|
||||
oslo.i18n!=3.15.2,>=2.1.0 # Apache-2.0
|
||||
|
||||
10
setup.cfg
10
setup.cfg
@@ -5,7 +5,7 @@ description-file =
|
||||
README.rst
|
||||
author = OpenStack
|
||||
author-email = openstack-dev@lists.openstack.org
|
||||
home-page = https://docs.openstack.org/developer/karbor/
|
||||
home-page = https://docs.openstack.org/karbor/latest
|
||||
classifier =
|
||||
Environment :: OpenStack
|
||||
Intended Audience :: Information Technology
|
||||
@@ -44,10 +44,10 @@ openstack.data_protection.v1 =
|
||||
data_protection_restore_create = karborclient.osc.v1.restores:CreateRestore
|
||||
data_protection_provider_list = karborclient.osc.v1.providers:ListProviders
|
||||
data_protection_provider_show = karborclient.osc.v1.providers:ShowProvider
|
||||
data_protection_protectable_list = karborclient.osc.v1.protectables.ListProtectables
|
||||
data_protection_protectable_show = karborclient.osc.v1.protectables.ShowProtectable
|
||||
data_protection_protectable_instance_list = karborclient.osc.v1.protectables.ListProtectableInstances
|
||||
data_protection_protectable_instance_show = karborclient.osc.v1.protectables.ShowProtectableInstance
|
||||
data_protection_protectable_list = karborclient.osc.v1.protectables:ListProtectables
|
||||
data_protection_protectable_show = karborclient.osc.v1.protectables:ShowProtectable
|
||||
data_protection_protectable_instance_list = karborclient.osc.v1.protectables:ListProtectableInstances
|
||||
data_protection_protectable_instance_show = karborclient.osc.v1.protectables:ShowProtectableInstance
|
||||
data_protection_trigger_list = karborclient.osc.v1.triggers:ListTriggers
|
||||
data_protection_trigger_show = karborclient.osc.v1.triggers:ShowTrigger
|
||||
data_protection_trigger_create = karborclient.osc.v1.triggers:CreateTrigger
|
||||
|
||||
Reference in New Issue
Block a user