36 lines
1.4 KiB
Go
36 lines
1.4 KiB
Go
/*
|
|
* Copyright 2024 the KubeSphere Authors.
|
|
* Please refer to the LICENSE file in the root directory of the project.
|
|
* https://github.com/kubesphere/kubesphere/blob/master/LICENSE
|
|
*/
|
|
|
|
package overview
|
|
|
|
const (
|
|
WorkspaceCount = "workspace_count"
|
|
ClusterCount = "cluster_count"
|
|
NamespaceCount = "namespace_count"
|
|
ExtensionCount = "extension_count"
|
|
InstallPlanCount = "installplan_count"
|
|
PodCount = "pod_count"
|
|
DeploymentCount = "deployment_count"
|
|
StatefulSetCount = "statefulset_count"
|
|
DaemonSetCount = "daemonset_count"
|
|
JobCount = "job_count"
|
|
CronJobCount = "cronjob_count"
|
|
ServiceCount = "service_count"
|
|
IngressCount = "ingress_count"
|
|
PersistentVolumeCount = "persistentvolume_count"
|
|
PersistentVolumeClaimCount = "persistentvolumeclaim_count"
|
|
|
|
GlobalRoleCount = "globalrole_count"
|
|
WorkspaceRoleCount = "workspacerole_count"
|
|
RoleCount = "role_count"
|
|
ClusterRoleCount = "clusterrole_count"
|
|
UserCount = "user_count"
|
|
GlobalRoleBindingCount = "globalrolebindings_count"
|
|
WorkspaceRoleBindingCount = "workspacerolebinding_count"
|
|
ClusterRoleBindingCount = "clusterrolebinding_count"
|
|
RoleBindingCount = "rolebinding_count"
|
|
)
|