Retrieves specified cluster workload daemonsets
POST/v1/dashboard/spectroclusters/:uid/workloads/daemonset
Retrieves specified cluster workload daemonsets
Request
Path Parameters
uid stringrequired
Header Parameters
ProjectUid string
Scope the request to the specified project uid
- application/json
Body
filter
object
Cluster workloads filter
namespacesstring[]
Responses
- 200
An array of cluster workload daemonsets
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
daemonSets
object[]
metadata
object
Cluster workload metadata
creationTimestampdate-time
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
kindstring
namestring
uidstring
labels
object
property name*string
namespacestring
status
object
Cluster workload daemonset status
availableint32
currentScheduledint32
desiredScheduledint32
misScheduledint32
readyint32
updatedScheduledint32
{
"daemonSets": [
{
"metadata": {
"creationTimestamp": "2024-04-16T17:49:00.981Z",
"entity": {
"kind": "string",
"name": "string",
"uid": "string"
},
"labels": {},
"namespace": "string"
},
"status": {
"available": 0,
"currentScheduled": 0,
"desiredScheduled": 0,
"misScheduled": 0,
"ready": 0,
"updatedScheduled": 0
}
}
]
}
Loading...