def rgw_create(**kwargs): ''' Create a rgw CLI Example: .. code-block:: bash salt '*' ceph.rgw_create \\ 'name' = 'rgw.name' \\ 'cluster_name'='ceph' \\ 'cluster_uuid'='cluster_uuid' Notes: name: Required paramter Set the rgw client name. Must start with 'rgw.' 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_create(**kwargs)
def rgw_create(**kwargs): ''' Create a rgw CLI Example: .. code-block:: bash salt '*' ceph_cfg.rgw_create \\ 'name' = 'rgw.name' \\ 'cluster_name'='ceph' \\ 'cluster_uuid'='cluster_uuid' Notes: name: Required paramter Set the rgw client name. Must start with 'rgw.' 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_create(**kwargs)
def rgw_create(**kwargs): ''' Create a rgw CLI Example: .. code-block:: bash salt '*' ceph.rgw_create \\ 'name' = 'rgw.name' \\ 'cluster_name'='ceph' \\ 'cluster_uuid'='cluster_uuid' name (required) The RGW client name. Must start with ``rgw.`` 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_create(**kwargs)
def rgw_create(**kwargs): """ Create a rgw """ return ceph_cfg.rgw_create(**kwargs)