def cluster_quorum(**kwargs): ''' Get the cluster's quorum status CLI Example: .. code-block:: bash salt '*' ceph.cluster_quorum \\ 'cluster_name'='ceph' \\ 'cluster_uuid'='cluster_uuid' Notes: Get the cluster quorum status. Scope: Cluster wide Arguments: 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.cluster_quorum(**kwargs)
def cluster_quorum(**kwargs): ''' Get the cluster's quorum status CLI Example: .. code-block:: bash salt '*' ceph_cfg.cluster_quorum \\ 'cluster_name'='ceph' \\ 'cluster_uuid'='cluster_uuid' Notes: Get the cluster quorum status. Scope: Cluster wide Arguments: 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.cluster_quorum(**kwargs)
def cluster_quorum(**kwargs): ''' Get the cluster's quorum status CLI Example: .. code-block:: bash salt '*' ceph.cluster_quorum \\ 'cluster_name'='ceph' \\ 'cluster_uuid'='cluster_uuid' cluster_uuid The cluster UUID. Defaults to value found in ceph config file. cluster_name The cluster name. Defaults to ``ceph``. ''' return ceph_cfg.cluster_quorum(**kwargs)