@daocloud-proto/kpanda 0.29.0-dev-d18952b4 → 0.29.0-dev-73056175

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.
@@ -11,6 +11,12 @@ export enum GPUModel {
11
11
  GPU_MODEL_VGPU = "GPU_MODEL_VGPU",
12
12
  }
13
13
 
14
+ export enum MIGStrategy {
15
+ MIG_STRATEGY_UNSPECIFIED = "MIG_STRATEGY_UNSPECIFIED",
16
+ MIG_STRATEGY_SINGLE = "MIG_STRATEGY_SINGLE",
17
+ MIG_STRATEGY_MIXED = "MIG_STRATEGY_MIXED",
18
+ }
19
+
14
20
  export type GPU = {
15
21
  uid?: string
16
22
  name?: string
@@ -48,12 +54,18 @@ export type UpdateNodeGPUModeRequest = {
48
54
  cluster?: string
49
55
  node?: string
50
56
  mode?: GPUModel
57
+ migSpec?: MIGModeSpec
51
58
  }
52
59
 
53
60
  export type UpdateNodeGPUModeResponse = {
54
61
  mode?: GPUModel
55
62
  }
56
63
 
64
+ export type MIGModeSpec = {
65
+ config?: string
66
+ strategy?: MIGStrategy
67
+ }
68
+
57
69
  export type ListClusterGPUSummaryRequest = {
58
70
  cluster?: string
59
71
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name":"@daocloud-proto/kpanda",
3
- "version":"v0.29.0-dev-d18952b4",
3
+ "version":"v0.29.0-dev-73056175",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {