Get the list of StatefulSets in the specified cluster and namespace.
OK
생성 일시
"2023-04-29 05:54:54"
제공할 파드 수
1
이미지 목록
라벨
StatefulSet 이름
"cocktail-api-cmdb"
네임스페이스 이름
"cocktail-system"
준비된 파드 수
const response = await fetch('/v1/clusters/{clusterId}/namespaces/{namespaceName}/statefulsets', { method: 'GET', headers: {}, }); const data = await response.json();
[ { "creationTimestamp": "2023-04-29 05:54:54", "desiredPodCnt": 1, "images": [ "101.55.69.30/library/api-cmdb:4.7.4-release.20230413" ], "labels": { "app.kubernetes.io/instance": "cocktail", "app.kubernetes.io/managed-by": "Helm", "app.kubernetes.io/name": "api-cmdb" }, "name": "cocktail-api-cmdb", "namespace": "cocktail-system", "readyPodCnt": 1 } ]