feat: support app.k8s.io applications paging query

Signed-off-by: hongming <talonwan@yunify.com>
This commit is contained in:
hongming
2019-10-17 17:04:48 +08:00
parent 90961a24df
commit e1a70bc8cd
5 changed files with 181 additions and 0 deletions

View File

@@ -42,6 +42,7 @@ func init() {
resources[S2iBuilders] = &s2iBuilderSearcher{}
resources[S2iRuns] = &s2iRunSearcher{}
resources[HorizontalPodAutoscalers] = &hpaSearcher{}
resources[Applications] = &appSearcher{}
resources[Nodes] = &nodeSearcher{}
resources[Namespaces] = &namespaceSearcher{}
@@ -103,6 +104,7 @@ const (
Services = "services"
StatefulSets = "statefulsets"
HorizontalPodAutoscalers = "horizontalpodautoscalers"
Applications = "applications"
Nodes = "nodes"
Namespaces = "namespaces"
StorageClasses = "storageclasses"