def keyring_save(**kwargs): ''' Create save keyring locally CLI Example: .. code-block:: bash salt '*' ceph.keyring_save \\ 'keyring_type'='admin' \\ 'cluster_name'='ceph' \\ 'cluster_uuid'='cluster_uuid' \\ '' Notes: keyring_type Required paramter Can be set to: admin, mon, osd, rgw, mds 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.keyring_save(**kwargs)
def keyring_save(**kwargs): ''' Create save keyring locally CLI Example: .. code-block:: bash salt '*' ceph_cfg.keyring_save \\ 'keyring_type'='admin' \\ 'cluster_name'='ceph' \\ 'cluster_uuid'='cluster_uuid' \\ '' Notes: keyring_type Required paramter Can be set to: admin, mon, osd, rgw, mds 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.keyring_save(**kwargs)
def keyring_save(**kwargs): ''' Create save keyring locally CLI Example: .. code-block:: bash salt '*' ceph.keyring_save \\ 'keyring_type'='admin' \\ 'cluster_name'='ceph' \\ 'cluster_uuid'='cluster_uuid' keyring_type (required) One of ``admin``, ``mon``, ``osd``, ``rgw``, ``mds`` cluster_uuid The cluster UUID. Defaults to value found in ceph config file. cluster_name The cluster name. Defaults to ``ceph``. ''' return ceph_cfg.keyring_save(**kwargs)