def pool_add(pool_name, **kwargs): ''' Create a pool CLI Example: .. code-block:: bash salt '*' ceph_cfg.pool_add pool_name \\ 'cluster_name'='ceph' \\ 'cluster_uuid'='cluster_uuid' Notes: cluster_name Set the cluster name. Defaults to "ceph". cluster_uuid Set the cluster UUID. Defaults to value found in ceph config file. pg_num Default to 8 pgp_num Default to pg_num pool_type can take values "replicated" or "erasure" erasure_code_profile Set the "erasure_code_profile" crush_ruleset Set the crush map rule set ''' return ceph_cfg.pool_add(pool_name, **kwargs)
def pool_add(pool_name, **kwargs): ''' Create a pool CLI Example: .. code-block:: bash salt '*' ceph.pool_add pool_name \\ 'cluster_name'='ceph' \\ 'cluster_uuid'='cluster_uuid' cluster_name The cluster name. Defaults to ``ceph``. cluster_uuid The cluster UUID. Defaults to value found in ceph config file. pg_num Default to 8 pgp_num Default to pg_num pool_type can take values "replicated" or "erasure" erasure_code_profile The "erasure_code_profile" crush_ruleset The crush map rule set ''' return ceph_cfg.pool_add(pool_name, **kwargs)
def pool_add(pool_name, **kwargs): """ List all cephx authorization keys CLI Example: .. code-block:: bash salt '*' ceph.pool_add pool_name \\ 'cluster_name'='ceph' \\ 'cluster_uuid'='cluster_uuid' Notes: cluster_name Set the cluster name. Defaults to "ceph". cluster_uuid Set the cluster UUID. Defaults to value found in ceph config file. pg_num Default to 8 pgp_num Default to pg_num pool_type can take values "replicated" or "erasure" erasure_code_profile Set the "erasure_code_profile" crush_ruleset Set the crush map rule set """ return ceph_cfg.pool_add(pool_name, **kwargs)