Retrieves specified cluster workload pods
POST/v1/dashboard/spectroclusters/:uid/workloads/pod
Retrieves specified cluster workload pods
Request
Path Parameters
Header Parameters
Scope the request to the specified project uid
- application/json
Body
filter object
Cluster workloads filter
Responses
- 200
An array of cluster workload pods
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- Array [
- ]
- Array [
- ]
- Array [
- ]
- Array [
- ]
- ]
pods object[]
metadata object
Cluster workload pod metadata
associatedRefs object[]
Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.
entity object
Cluster workload ref
labels object
spec object
Cluster workload pod spec
containers object[]
resources object
Cluster workload pod container resources
limits object
Cluster workload pod container resource
requests object
Cluster workload pod container resource
volumes object[]
status object
Cluster workload pod status
containers object[]
state object
Cluster workload pod container state
Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.
Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.
{
"pods": [
{
"metadata": {
"associatedRefs": [
{
"kind": "string",
"name": "string",
"uid": "string"
}
],
"creationTimestamp": "2023-12-01T21:31:48.586Z",
"entity": {
"kind": "string",
"name": "string",
"uid": "string"
},
"labels": {},
"machineUid": "string",
"namespace": "string",
"nodename": "string"
},
"spec": {
"containers": [
{
"image": "string",
"name": "string",
"resources": {
"limits": {
"cpu": 0,
"cpuUnit": "string",
"memory": 0,
"memoryUnit": "string"
},
"requests": {
"cpu": 0,
"cpuUnit": "string",
"memory": 0,
"memoryUnit": "string"
}
}
}
],
"volumes": [
{
"name": "string"
}
]
},
"status": {
"containers": [
{
"image": "string",
"name": "string",
"ready": true,
"restartCount": 0,
"started": true,
"state": {
"exitCode": 0,
"finishedAt": "2023-12-01T21:31:48.586Z",
"reason": "string",
"startedAt": "2023-12-01T21:31:48.586Z",
"state": "string"
}
}
],
"phase": "string",
"podIp": "string",
"qosClass": "string"
}
}
]
}