123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- // 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.gkemulticloud.v1;
- import "google/api/field_behavior.proto";
- import "google/protobuf/timestamp.proto";
- option csharp_namespace = "Google.Cloud.GkeMultiCloud.V1";
- option go_package = "google.golang.org/genproto/googleapis/cloud/gkemulticloud/v1;gkemulticloud";
- option java_multiple_files = true;
- option java_outer_classname = "CommonResourcesProto";
- option java_package = "com.google.cloud.gkemulticloud.v1";
- option php_namespace = "Google\\Cloud\\GkeMultiCloud\\V1";
- option ruby_package = "Google::Cloud::GkeMultiCloud::V1";
- // Workload Identity settings.
- message WorkloadIdentityConfig {
- // The OIDC issuer URL for this cluster.
- string issuer_uri = 1;
- // The Workload Identity Pool associated to the cluster.
- string workload_pool = 2;
- // The ID of the OIDC Identity Provider (IdP) associated to the Workload
- // Identity Pool.
- string identity_provider = 3;
- }
- // Constraints applied to pods.
- message MaxPodsConstraint {
- // Required. The maximum number of pods to schedule on a single node.
- int64 max_pods_per_node = 1 [(google.api.field_behavior) = REQUIRED];
- }
- // Metadata about a long-running operation.
- message OperationMetadata {
- // Output only. The time at which this operation was created.
- google.protobuf.Timestamp create_time = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
- // Output only. The time at which this operation was completed.
- google.protobuf.Timestamp end_time = 2 [(google.api.field_behavior) = OUTPUT_ONLY];
- // Output only. The name of the resource associated to this operation.
- string target = 3 [(google.api.field_behavior) = OUTPUT_ONLY];
- // Output only. Human-readable status of the operation, if any.
- string status_detail = 4 [(google.api.field_behavior) = OUTPUT_ONLY];
- // Output only. Human-readable status of any error that occurred during the operation.
- string error_detail = 5 [(google.api.field_behavior) = OUTPUT_ONLY];
- }
- // The taint content for the node taint.
- message NodeTaint {
- // The taint effect.
- enum Effect {
- // Not set.
- EFFECT_UNSPECIFIED = 0;
- // Do not allow new pods to schedule onto the node unless they tolerate the
- // taint, but allow all pods submitted to Kubelet without going through the
- // scheduler to start, and allow all already-running pods to continue
- // running. Enforced by the scheduler.
- NO_SCHEDULE = 1;
- // Like TaintEffectNoSchedule, but the scheduler tries not to schedule
- // new pods onto the node, rather than prohibiting new pods from scheduling
- // onto the node entirely. Enforced by the scheduler.
- PREFER_NO_SCHEDULE = 2;
- // Evict any already-running pods that do not tolerate the taint.
- // Currently enforced by NodeController.
- NO_EXECUTE = 3;
- }
- // Required. Key for the taint.
- string key = 1 [(google.api.field_behavior) = REQUIRED];
- // Required. Value for the taint.
- string value = 2 [(google.api.field_behavior) = REQUIRED];
- // Required. The taint effect.
- Effect effect = 3 [(google.api.field_behavior) = REQUIRED];
- }
- // Fleet related configuration.
- //
- // Fleets are a Google Cloud concept for logically organizing clusters,
- // letting you use and manage multi-cluster capabilities and apply
- // consistent policies across your systems.
- //
- // See [Anthos
- // Fleets](https://cloud.google.com/anthos/multicluster-management/fleets) for
- // more details on Anthos multi-cluster capabilities using Fleets.
- message Fleet {
- // Required. The name of the Fleet host project where this cluster will be registered.
- //
- // Project names are formatted as
- // `projects/<project-number>`.
- string project = 1 [(google.api.field_behavior) = REQUIRED];
- // Output only. The name of the managed Hub Membership resource associated to this cluster.
- //
- // Membership names are formatted as
- // `projects/<project-number>/locations/global/membership/<cluster-id>`.
- string membership = 2 [(google.api.field_behavior) = OUTPUT_ONLY];
- }
- // Parameters that describe the Logging configuration in a cluster.
- message LoggingConfig {
- // The configuration of the logging components;
- LoggingComponentConfig component_config = 1;
- }
- // Parameters that describe the Logging component configuration in a cluster.
- message LoggingComponentConfig {
- // The components of the logging configuration;
- enum Component {
- // No component is specified
- COMPONENT_UNSPECIFIED = 0;
- // This indicates that system logging components is enabled.
- SYSTEM_COMPONENTS = 1;
- // This indicates that user workload logging component is enabled.
- WORKLOADS = 2;
- }
- // The components to be enabled.
- repeated Component enable_components = 1;
- }
|