@flyteorg/flyteidl 1.13.5 → 1.13.6

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flyteorg/flyteidl",
3
- "version": "1.13.5",
3
+ "version": "1.13.6",
4
4
  "description": "Compiled protocol buffers and gRPC service clients/servers for Flyte IDLs",
5
5
  "repository": {
6
6
  "type": "git",
@@ -4,6 +4,8 @@ package flyteidl.plugins;
4
4
 
5
5
  option go_package = "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/plugins";
6
6
 
7
+ import "flyteidl/core/tasks.proto";
8
+
7
9
  // RayJobSpec defines the desired state of RayJob
8
10
  message RayJob {
9
11
  // RayClusterSpec is the cluster template to run the job
@@ -35,6 +37,8 @@ message HeadGroupSpec {
35
37
  // Optional. RayStartParams are the params of the start command: address, object-store-memory.
36
38
  // Refer to https://docs.ray.io/en/latest/ray-core/package-ref.html#ray-start
37
39
  map<string, string> ray_start_params = 1;
40
+ // Pod Spec for the ray head pod
41
+ core.K8sPod k8s_pod = 2;
38
42
  }
39
43
 
40
44
  // WorkerGroupSpec are the specs for the worker pods
@@ -50,4 +54,6 @@ message WorkerGroupSpec {
50
54
  // Optional. RayStartParams are the params of the start command: address, object-store-memory.
51
55
  // Refer to https://docs.ray.io/en/latest/ray-core/package-ref.html#ray-start
52
56
  map<string, string> ray_start_params = 5;
57
+ // Pod Spec for ray worker pods
58
+ core.K8sPod k8s_pod = 6;
53
59
  }