@daocloud-proto/kpanda 0.22.0-dev-37c475c1 → 0.22.0-dev-12cb14dc

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -20,7 +20,7 @@ export enum PluginName {
20
20
  Hwameistor = "Hwameistor",
21
21
  Flannel = "Flannel",
22
22
  KubeOvn = "KubeOvn",
23
- Kolm = "Kolm",
23
+ OLM = "OLM",
24
24
  }
25
25
 
26
26
  export type Plugin = {
@@ -110,6 +110,7 @@ export type ListPodsByNodeRequest = {
110
110
  sortDir?: KpandaIoApiTypesPage.SortDir
111
111
  labelSelector?: string
112
112
  fieldSelector?: string
113
+ status?: KpandaIoApiCoreV1alpha1Pod.FilterPodStatus
113
114
  }
114
115
 
115
116
  export type ListPodsByNodeResponse = {
@@ -7,6 +7,14 @@
7
7
  import * as KpandaIoApiTypesObjectmeta from "../../types/objectmeta.pb"
8
8
  import * as KpandaIoApiTypesPage from "../../types/page.pb"
9
9
 
10
+ export enum FilterPodStatus {
11
+ FILTER_POD_STATUS_UNSPECIFIED = "FILTER_POD_STATUS_UNSPECIFIED",
12
+ FILTER_POD_STATUS_RUNNING = "FILTER_POD_STATUS_RUNNING",
13
+ FILTER_POD_STATUS_ERROR = "FILTER_POD_STATUS_ERROR",
14
+ FILTER_POD_STATUS_COMPLETED = "FILTER_POD_STATUS_COMPLETED",
15
+ FILTER_POD_STATUS_WAITING = "FILTER_POD_STATUS_WAITING",
16
+ }
17
+
10
18
  export enum PodStatusPhase {
11
19
  PHASE_UNSPECIFIED = "PHASE_UNSPECIFIED",
12
20
  Unknown = "Unknown",
@@ -500,6 +508,7 @@ export type ListClusterPodsRequest = {
500
508
  labelSelector?: string
501
509
  fieldSelector?: string
502
510
  fuzzyName?: string
511
+ status?: FilterPodStatus
503
512
  }
504
513
 
505
514
  export type ListAllPodsRequest = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name":"@daocloud-proto/kpanda",
3
- "version":"v0.22.0-dev-37c475c1",
3
+ "version":"v0.22.0-dev-12cb14dc",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {