Skip to content

Commit 1bff942

Browse files
feat: [container] new AddonsConfig field stateful_ha_config (#5002)
* feat: new AddonsConfig field stateful_ha_config feat: new message StatefulHAConfig docs: Autopilot.conversion_status is now OUTPUT_ONLY docs: update Autopilot.conversion_status comment with behavior PiperOrigin-RevId: 603382984 Source-Link: googleapis/googleapis@207beee Source-Link: googleapis/googleapis-gen@ca523c8 Copy-Tag: eyJwIjoicGFja2FnZXMvZ29vZ2xlLWNvbnRhaW5lci8uT3dsQm90LnlhbWwiLCJoIjoiY2E1MjNjOGE0ZGY3MDg5OTBkMzAyYTNkMmI5NTExNzY5ZGM4ZThlNSJ9 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent 9f9a26d commit 1bff942

4 files changed

Lines changed: 366 additions & 3 deletions

File tree

packages/google-container/protos/google/container/v1beta1/cluster_service.proto

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1368,6 +1368,10 @@ message AddonsConfig {
13681368

13691369
// Configuration for the Cloud Storage Fuse CSI driver.
13701370
GcsFuseCsiDriverConfig gcs_fuse_csi_driver_config = 17;
1371+
1372+
// Optional. Configuration for the StatefulHA add-on.
1373+
StatefulHAConfig stateful_ha_config = 18
1374+
[(google.api.field_behavior) = OPTIONAL];
13711375
}
13721376

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

1428+
// Configuration for the Stateful HA add-on.
1429+
message StatefulHAConfig {
1430+
// Whether the Stateful HA add-on is enabled for this cluster.
1431+
bool enabled = 1;
1432+
}
1433+
14241434
// Configuration options for the Config Connector add-on.
14251435
message ConfigConnectorConfig {
14261436
// Whether Cloud Connector is enabled for this cluster.
@@ -5518,8 +5528,9 @@ message Autopilot {
55185528
// Workload policy configuration for Autopilot.
55195529
WorkloadPolicyConfig workload_policy_config = 2;
55205530

5521-
// ConversionStatus shows conversion status.
5522-
AutopilotConversionStatus conversion_status = 3;
5531+
// Output only. ConversionStatus shows conversion status.
5532+
AutopilotConversionStatus conversion_status = 3
5533+
[(google.api.field_behavior) = OUTPUT_ONLY];
55235534
}
55245535

55255536
// WorkloadPolicyConfig is the configuration of workload policy for autopilot

packages/google-container/protos/protos.d.ts

Lines changed: 103 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)