Cluster
Clustersβ
Returns general information about the clusters managed by the YuniKorn Scheduler. Information includes number of (total, failed, pending, running, completed) applications and containers.
URL : /ws/v1/clusters
Method : GET
Auth required : NO
Success responseβ
Code : 200 OK
Content examples
As an example, here is a response from a 2-node cluster with 3 applications and 4 running containers.
[
    {
        "clusterName": "kubernetes",
        "totalApplications": "3",
        "failedApplications": "1",
        "pendingApplications": "",
        "runningApplications": "3",
        "completedApplications": "",
        "totalContainers": "4",
        "failedContainers": "",
        "pendingContainers": "",
        "runningContainers": "4",
        "activeNodes": "2",
        "totalNodes": "2",
        "failedNodes": ""
    }
]