Merge "Add docstring for plugin_scope"

This commit is contained in:
Jenkins 2015-12-02 11:05:20 +00:00 committed by Gerrit Code Review
commit 3e9e79d7ab
1 changed files with 11 additions and 0 deletions

View File

@ -312,6 +312,17 @@ def plugin_activate():
@app.route('/NetworkDriver.GetCapabilities', methods=['POST'])
def plugin_scope():
"""Returns the capability as the remote network driver.
This function returns the capability of the remote network driver, which is
``global`` or ``local`` and defaults to ``global``. With ``global``
capability, the network information is shared among multipe Docker daemons
if the distributed store is appropriately configured.
See the following link for more details about the spec:
https://github.com/docker/libnetwork/blob/master/docs/remote.md#set-capability # noqa
"""
capabilities = {'Scope': cfg.CONF.capability_scope}
return flask.jsonify(capabilities)