Exemple #1
0
def mds_create(**kwargs):
    '''
    Create a mds

    CLI Example:

    .. code-block:: bash

        salt '*' ceph.mds_create \\
                'name' = 'mds.name' \\
                'port' = 1000, \\
                'addr' = 'fqdn.example.org' \\
                'cluster_name'='ceph' \\
                'cluster_uuid'='cluster_uuid'

    name (required)
        The MDS name (must start with ``mds.``)

    port (required)
        Port to which the MDS will listen

    addr (required)
        Address or IP address for the MDS to listen

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

    cluster_name
        The cluster name. Defaults to ``ceph``.
    '''
    return ceph_cfg.mds_create(**kwargs)
Exemple #2
0
def mds_create(**kwargs):
    '''
    Create a mds

    CLI Example:

    .. code-block:: bash

        salt '*' ceph.mds_create \\
                'name' = 'mds.name' \\
                'port' = 1000, \\
                'addr' = 'fqdn.example.org' \\
                'cluster_name'='ceph' \\
                'cluster_uuid'='cluster_uuid'

    Notes:

    name:
        Required paramter
        Set the rgw client name. Must start with 'mds.'

    port:
        Required paramter
        Port for the mds to listen to.

    addr:
        Required paramter
        Address or IP address for the mds to listen to.

    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.mds_create(**kwargs)
Exemple #3
0
def mds_create(**kwargs):
    '''
    Create a mds

    CLI Example:

    .. code-block:: bash

        salt '*' ceph_cfg.mds_create \\
                'name' = 'mds.name' \\
                'port' = 1000, \\
                'addr' = 'fqdn.example.org' \\
                'cluster_name'='ceph' \\
                'cluster_uuid'='cluster_uuid'

    Notes:

    name:
        Required paramter
        Set the rgw client name. Must start with 'mds.'

    port:
        Required paramter
        Port for the mds to listen to.

    addr:
        Required paramter
        Address or IP address for the mds to listen to.

    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.mds_create(**kwargs)
Exemple #4
0
def mds_create(**kwargs):
    """
    Create a mds
    """
    return ceph_cfg.mds_create(**kwargs)