Skip to content

Commit

Permalink
feat: added configuration for the StatefulHA addon to the AddonsConfig
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 604687474
  • Loading branch information
Google APIs authored and Copybara-Service committed Feb 6, 2024
1 parent 29c256b commit 8b16254
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions google/container/v1/cluster_service.proto
Expand Up @@ -1223,6 +1223,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 @@ -1365,6 +1369,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 master authorized networks feature. Enabled
// master authorized networks will disallow all external traffic to access
// Kubernetes master through HTTPS except traffic from the given CIDR blocks,
Expand Down

0 comments on commit 8b16254

Please sign in to comment.