mirror of https://github.com/portainer/portainer
14 lines
386 B
Go
14 lines
386 B
Go
|
package kubernetes
|
||
|
|
||
|
type K8sMetrics struct {
|
||
|
Resources []K8sMetricsResources `json:"resources"`
|
||
|
}
|
||
|
|
||
|
type K8sMetricsResources struct {
|
||
|
Kind string `json:"Kind,omitempty"`
|
||
|
Name string `json:"Name,omitempty"`
|
||
|
Namespaced bool `json:"Namespaced,omitempty"`
|
||
|
SingularName string `json:"SingularName,omitempty"`
|
||
|
Verbs []string `json:"Verbs,omitempty"`
|
||
|
}
|