From a0d313e095c2b5fc1a32809c38cf96b13e5772b2 Mon Sep 17 00:00:00 2001 From: chenyifan-vertex <151570620+chenyifan-vertex@users.noreply.github.com> Date: Tue, 15 Oct 2024 15:04:18 -0700 Subject: [PATCH] feat: add fields in SinglePlatformSpec (#11299) Signed-off-by: chenyifan-vertex <151570620+chenyifan-vertex@users.noreply.github.com> --- api/v2alpha1/pipeline_spec.proto | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/api/v2alpha1/pipeline_spec.proto b/api/v2alpha1/pipeline_spec.proto index cdd6049918c..9eeb8fe4988 100644 --- a/api/v2alpha1/pipeline_spec.proto +++ b/api/v2alpha1/pipeline_spec.proto @@ -1085,7 +1085,12 @@ message SinglePlatformSpec { // Mirrors PipelineSpec.deployment_spec structure PlatformDeploymentConfig deployment_spec = 1; - reserved 2, 3; + // Name of the platform. For example, "google_cloud" + string platform = 2; + + // Arbitrary configuration, which will be defined by the platform + // protos/libraries. + google.protobuf.Struct config = 3; }