1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-19 13:29:41 +02:00
portainer/api/http/models/kubernetes/dashboard.go

13 lines
405 B
Go

package kubernetes
type (
K8sDashboard struct {
NamespacesCount int64 `json:"namespacesCount"`
ApplicationsCount int64 `json:"applicationsCount"`
ServicesCount int64 `json:"servicesCount"`
IngressesCount int64 `json:"ingressesCount"`
ConfigMapsCount int64 `json:"configMapsCount"`
SecretsCount int64 `json:"secretsCount"`
VolumesCount int64 `json:"volumesCount"`
}
)