Merge branch 'apiserver' into merge

This commit is contained in:
Hongchao Deng
2021-11-22 17:25:50 +08:00
177 changed files with 25065 additions and 3350 deletions
+1
View File
@@ -27,6 +27,7 @@
matchingLabels?: {...}
}
list?: {...}
...
}
#Delete: {
+32
View File
@@ -0,0 +1,32 @@
#ListResourcesInApp: {
#do: "listResourcesInApp"
#provider: "query"
app: {
name: string
namespace: string
components?: [...string]
filter?: {
cluster?: string
clusterNamespace?: string
}
clusterNamespace?: string
enableHistoryQuery?: bool
}
...
}
#CollectPods: {
#do: "collectPods"
#provider: "query"
value: {...}
cluster: string
...
}
#SearchEvents: {
#do: "searchEvents"
#provider: "query"
value: {...}
cluster: string
...
}
+22
View File
@@ -0,0 +1,22 @@
#DateToTimestamp: {
#do: "timestamp"
#provider: "time"
date: string
layout: *"" | string
timestamp?: int64
...
}
#TimestampToDate: {
#do: "date"
#provider: "time"
timestamp: int64
layout: *"" | string
location: *"" | string
date?: string
...
}