mirror of https://github.com/portainer/portainer
14 lines
405 B
Go
14 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"`
|
||
|
}
|
||
|
)
|