123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- // Copyright 2022 Google LLC
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- syntax = "proto3";
- package google.cloud.run.v2;
- import "google/api/field_behavior.proto";
- import "google/cloud/run/v2/task_template.proto";
- option go_package = "google.golang.org/genproto/googleapis/cloud/run/v2;run";
- option java_multiple_files = true;
- option java_outer_classname = "ExecutionTemplateProto";
- option java_package = "com.google.cloud.run.v2";
- // ExecutionTemplate describes the data an execution should have when created
- // from a template.
- message ExecutionTemplate {
- // KRM-style labels for the resource.
- map<string, string> labels = 1;
- // KRM-style annotations for the resource.
- map<string, string> annotations = 2;
- // Specifies the maximum desired number of tasks the execution should run at
- // given time. Must be <= task_count.
- // When the job is run, if this field is 0 or unset, the maximum possible
- // value will be used for that execution.
- // The actual number of tasks running in steady state will be less than this
- // number when there are fewer tasks waiting to be completed remaining,
- // i.e. when the work left to do is less than max parallelism.
- int32 parallelism = 3;
- // Specifies the desired number of tasks the execution should run.
- // Setting to 1 means that parallelism is limited to 1 and the success of
- // that task signals the success of the execution.
- // More info:
- // https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/
- int32 task_count = 4;
- // Required. Describes the task(s) that will be created when executing an execution.
- TaskTemplate template = 5 [(google.api.field_behavior) = REQUIRED];
- }
|