Example #1
0
def rgw_pools_create(**kwargs):
    '''
    Create pools for rgw

    CLI Example:

    .. code-block:: bash

        salt '*' ceph.rgw_pools_create

    cluster_uuid
        The cluster UUID. Defaults to value found in ceph config file.

    cluster_name
        The cluster name. Defaults to ``ceph``.
    '''
    return ceph_cfg.rgw_pools_create(**kwargs)
Example #2
0
def rgw_pools_create(**kwargs):
    '''
    Create pools for rgw

    CLI Example:

    .. code-block:: bash

        salt '*' ceph_cfg.rgw_pools_create

    Notes:

    cluster_uuid
        Set the cluster UUID. Defaults to value found in ceph config file.

    cluster_name
        Set the cluster name. Defaults to "ceph".
    '''
    return ceph_cfg.rgw_pools_create(**kwargs)
Example #3
0
def rgw_pools_create(**kwargs):
    """
    Create pools for rgw
    """
    return ceph_cfg.rgw_pools_create()