Skip to content
This repository has been archived by the owner on Oct 23, 2023. It is now read-only.

Commit

Permalink
fix import
Browse files Browse the repository at this point in the history
  • Loading branch information
guozhen-la committed Aug 8, 2023
1 parent dd6a9bc commit 8d77c78
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions protos/flyteidl/plugins/ray.proto
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
syntax = "proto3";

import "flyteidl/core/tasks.proto";

package flyteidl.plugins;

option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins";

import "flyteidl/core/tasks.proto";

// RayJobSpec defines the desired state of RayJob
message RayJob {
// RayClusterSpec is the cluster template to run the job
Expand All @@ -31,7 +31,7 @@ message HeadGroupSpec {
// Refer to https://docs.ray.io/en/latest/ray-core/package-ref.html#ray-start
map<string, string> ray_start_params = 1;
// Resource specification for ray head pod
Resources resources = 6;
core.Resources resources = 6;
}

// WorkerGroupSpec are the specs for the worker pods
Expand All @@ -48,5 +48,5 @@ message WorkerGroupSpec {
// Refer to https://docs.ray.io/en/latest/ray-core/package-ref.html#ray-start
map<string, string> ray_start_params = 5;
// Resource specification for ray worker pods
Resources resources = 6;
core.Resources resources = 6;
}

0 comments on commit 8d77c78

Please sign in to comment.