Skip to content

Commit b0fee2b

Browse files
feat: [container] add a new feature for fleet registration via cluster update in v1alpha1, v1beta1, v1 (#4244)
* feat: add a new feature for fleet registration via cluster update in v1alpha1, v1beta1, v1 PiperOrigin-RevId: 529516002 Source-Link: googleapis/googleapis@5ce0665 Source-Link: googleapis/googleapis-gen@5122c36 Copy-Tag: eyJwIjoicGFja2FnZXMvZ29vZ2xlLWNvbnRhaW5lci8uT3dsQm90LnlhbWwiLCJoIjoiNTEyMmMzNjMwMTQ4MzJkZjIxMTNmNDc0ZjU2MTM3YjRiYzBiM2NhMyJ9 * 🦉 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> Co-authored-by: sofisl <[email protected]>
1 parent 120cf55 commit b0fee2b

4 files changed

Lines changed: 396 additions & 0 deletions

File tree

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

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1178,6 +1178,9 @@ message AddonsConfig {
11781178

11791179
// Configuration for the Backup for GKE agent addon.
11801180
GkeBackupAgentConfig gke_backup_agent_config = 16;
1181+
1182+
// Configuration for the Cloud Storage Fuse CSI driver.
1183+
GcsFuseCsiDriverConfig gcs_fuse_csi_driver_config = 17;
11811184
}
11821185

11831186
// Configuration options for the HTTP (L7) load balancing controller addon,
@@ -1249,6 +1252,12 @@ message GcpFilestoreCsiDriverConfig {
12491252
bool enabled = 1;
12501253
}
12511254

1255+
// Configuration for the Cloud Storage Fuse CSI driver.
1256+
message GcsFuseCsiDriverConfig {
1257+
// Whether the Cloud Storage Fuse CSI driver is enabled for this cluster.
1258+
bool enabled = 1;
1259+
}
1260+
12521261
// Configuration for controlling master global access settings.
12531262
message PrivateClusterMasterGlobalAccessConfig {
12541263
// Whenever master is accessible globally or not.
@@ -2316,6 +2325,9 @@ message ClusterUpdate {
23162325
// The desired node pool logging configuration defaults for the cluster.
23172326
NodePoolLoggingConfig desired_node_pool_logging_config = 116;
23182327

2328+
// The desired fleet configuration for the cluster.
2329+
Fleet desired_fleet = 117;
2330+
23192331
// The desired stack type of the cluster.
23202332
// If a stack type is provided and does not match the current stack type of
23212333
// the cluster, update will attempt to change the stack type to the new type.

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

Lines changed: 109 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)