Metadata-Version: 1.1
Name: radosgw-admin
Version: 1.1.1
Summary: Ceph RADOS Gateway admin operations REST API
Home-page: https://github.com/valerytschopp/python-radosgw-admin
Author: Valery Tschopp
Author-email: valery.tschopp@gmail.com
License: Apache2
Description: # python-radosgw-admin
        
        Python REST API for the Ceph RADOS Gateway (radosgw) admin operations
        
        http://ceph.com/docs/master/radosgw/adminops/
        
        ## Requirement
        
        - boto
        
        ## Installation
        
            python setup.py install
        
        ## Configuration of the admin user
        
        Create or modify a user/bucket in radosgw with the following capabilities (caps):
        
            "caps": [
                { "type": "buckets",
                  "perm": "*"},
                { "type": "usage",
                  "perm": "read"},
                { "type": "metadata",
                  "perm": "read"},
                { "type": "users",
                  "perm": "*"}
            ]
        
        You can use `radosgw-admin` to add capabilities to an existing user:
        
             radosgw-admin caps add --uid <USER_ID> --caps "buckets=read,write"
             radosgw-admin caps add --uid <USER_ID> --caps "users=read,write"
        
        ## Example
        
        See the example in [examples/radosgw-admin-example.py](https://github.com/valerytschopp/python-radosgw-admin/blob/master/examples/radosgw-admin-example.py)
        
        
Platform: UNKNOWN
Requires: boto
