From 1aeea0093f31d8fafec8bef7b9c8aef67c23808e Mon Sep 17 00:00:00 2001 From: chenyifan-vertex <151570620+chenyifan-vertex@users.noreply.github.com> Date: Tue, 15 Oct 2024 11:08:18 -0700 Subject: [PATCH] =?UTF-8?q?chore:=20update=20SinglePlatformSpec=20and=20Co?= =?UTF-8?q?mponentSpec=20for=20Vertex=20Platform=20speci=E2=80=A6=20(#1129?= =?UTF-8?q?8)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: chenyifan-vertex <151570620+chenyifan-vertex@users.noreply.github.com> --- api/v2alpha1/pipeline_spec.proto | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/api/v2alpha1/pipeline_spec.proto b/api/v2alpha1/pipeline_spec.proto index 0296368f9e3..cdd6049918c 100644 --- a/api/v2alpha1/pipeline_spec.proto +++ b/api/v2alpha1/pipeline_spec.proto @@ -93,6 +93,8 @@ message ComponentSpec { DagSpec dag = 3; string executor_label = 4; } + // Supports platform-specific component features. + repeated SinglePlatformSpec single_platform_specs = 5; } // A DAG contains multiple tasks. @@ -1082,6 +1084,8 @@ message PlatformSpec { message SinglePlatformSpec { // Mirrors PipelineSpec.deployment_spec structure PlatformDeploymentConfig deployment_spec = 1; + + reserved 2, 3; }