Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: [container] Trusted Private Cloud support, use the universeDomain parameter #5020

Merged
merged 4 commits into from
Feb 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
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
103 changes: 103 additions & 0 deletions packages/google-container/protos/protos.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading