You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
portainer/api/http/models/kubernetes/dashboard.go

14 lines
405 B

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"`
}
)