Skip to content

Commit

Permalink
feat: new AddonsConfig field stateful_ha_config
Browse files Browse the repository at this point in the history
feat: new message StatefulHAConfig
docs: Autopilot.conversion_status is now OUTPUT_ONLY
docs: update Autopilot.conversion_status comment with behavior

PiperOrigin-RevId: 603382984
  • Loading branch information
Google APIs authored and Copybara-Service committed Feb 1, 2024
1 parent 805cfaa commit 207beee
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions google/container/v1beta1/cluster_service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -1368,6 +1368,10 @@ message AddonsConfig {

// Configuration for the Cloud Storage Fuse CSI driver.
GcsFuseCsiDriverConfig gcs_fuse_csi_driver_config = 17;

// Optional. Configuration for the StatefulHA add-on.
StatefulHAConfig stateful_ha_config = 18
[(google.api.field_behavior) = OPTIONAL];
}

// Configuration options for the HTTP (L7) load balancing controller addon,
Expand Down Expand Up @@ -1421,6 +1425,12 @@ message GkeBackupAgentConfig {
bool enabled = 1;
}

// Configuration for the Stateful HA add-on.
message StatefulHAConfig {
// Whether the Stateful HA add-on is enabled for this cluster.
bool enabled = 1;
}

// Configuration options for the Config Connector add-on.
message ConfigConnectorConfig {
// Whether Cloud Connector is enabled for this cluster.
Expand Down Expand Up @@ -5518,8 +5528,9 @@ message Autopilot {
// Workload policy configuration for Autopilot.
WorkloadPolicyConfig workload_policy_config = 2;

// ConversionStatus shows conversion status.
AutopilotConversionStatus conversion_status = 3;
// Output only. ConversionStatus shows conversion status.
AutopilotConversionStatus conversion_status = 3
[(google.api.field_behavior) = OUTPUT_ONLY];
}

// WorkloadPolicyConfig is the configuration of workload policy for autopilot
Expand Down

0 comments on commit 207beee

Please sign in to comment.