Get cluster namespace ReplicaSets list

Get cluster namespace ReplicaSets list

get

Get the list of ReplicaSets in the specified cluster and namespace.

Path parameters
clusterIdstringRequired
namespaceNamestringRequired
Responses
200
OK
*/*
get
GET /v1/clusters/{clusterId}/namespaces/{namespaceName}/replicaset HTTP/1.1
Host: 
Accept: */*
200

OK

[
  {
    "creationTimestamp": "2023-06-28 08:10:52",
    "desiredPodCnt": 1,
    "images": [
      "regi.acloud.run/library/log-api:1.3.0"
    ],
    "labels": {
      "app.kubernetes.io/app": "cocktail-log-api",
      "app.kubernetes.io/instance": "cocktail-log",
      "app.kubernetes.io/name": "api"
    },
    "name": "cocktail-log-api-9d5bcff4",
    "namespace": "cocktail-system",
    "ownerReferences": [
      {
        "apiVersion": "apps/v1",
        "blockOwnerDeletion": true,
        "controller": true,
        "kind": "Deployment",
        "name": "cocktail-log-api",
        "uid": "85f52a56-52e7-4289-8777-25f8c78d60e5"
      }
    ],
    "readyPodCnt": 1
  }
]

Was this helpful?