Skip to content

Commit 7f614ac

Browse files
feat: [container] add node_kernel_module_loading field to LinuxNodeConfig (#6832)
* feat: add desired_secret_sync_config to ClusterUpdate docs: various documentation fixes PiperOrigin-RevId: 822268461 Source-Link: googleapis/googleapis@72d2f93 Source-Link: googleapis/googleapis-gen@e5a5e3b Copy-Tag: eyJwIjoicGFja2FnZXMvZ29vZ2xlLWNvbnRhaW5lci8uT3dsQm90LnlhbWwiLCJoIjoiZTVhNWUzYjkwZDkxYmM5MGU2Y2IzMzY4YjIxNGYwYTM3NzRiNzg4MiJ9 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * feat: add node_kernel_module_loading field to LinuxNodeConfig feat: add network_tier_config field to NodeNetworkConfig feat: add writable_cgroups field to ContainerdConfig feat: deprecate enable_legacy_lustre_port field in LustreCsiDriverConfig feat: add network_tier_config field to IPAllocationPolicy feat: deprecate enterprise_config field in Cluster feat: deprecate desired_enterprise_config field in ClusterUpdate feat: add autoscaled_rollout_policy field to BlueGreenSettings feat: add end_time_behavior field to MaintenanceExclusionOptions feat: add privileged_admission_config field to Autopilot feat: add membership_type field to Fleet feat: add rotation_config field to SecretManagerConfig docs: various documentation fixes PiperOrigin-RevId: 822311698 Source-Link: googleapis/googleapis@94ccdfe Source-Link: googleapis/googleapis-gen@bc8b280 Copy-Tag: eyJwIjoicGFja2FnZXMvZ29vZ2xlLWNvbnRhaW5lci8uT3dsQm90LnlhbWwiLCJoIjoiYmM4YjI4MDU5YTk0MDhhZDI2YTBlMGYyZGZlYTkzY2JiNjlhNTQ1ZSJ9 * 🦉 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 e3e363b commit 7f614ac

File tree

10 files changed

+3090
-49
lines changed

10 files changed

+3090
-49
lines changed

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

Lines changed: 226 additions & 21 deletions
Large diffs are not rendered by default.

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

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,6 @@ option (google.api.resource_definition) = {
4848
pattern: "projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{crypto_key}/cryptoKeyVersions/{crypto_key_version}"
4949
};
5050

51-
// LINT: LEGACY_NAMES
52-
5351
// Google Kubernetes Engine Cluster Manager v1beta1
5452
service ClusterManager {
5553
option (google.api.default_host) = "container.googleapis.com";
@@ -87,7 +85,7 @@ service ClusterManager {
8785
// network](https://cloud.google.com/compute/docs/networks-and-firewalls#networks).
8886
//
8987
// One firewall is added for the cluster. After cluster creation,
90-
// the Kubelet creates routes for each node to allow the containers
88+
// the kubelet creates routes for each node to allow the containers
9189
// on that node to communicate with all other instances in the
9290
// cluster.
9391
//
@@ -1232,8 +1230,7 @@ message NodeConfig {
12321230
// persistent storage on your nodes.
12331231
// * `https://www.googleapis.com/auth/devstorage.read_only` is required for
12341232
// communicating with **gcr.io**
1235-
// (the [Google Container
1236-
// Registry](https://cloud.google.com/container-registry/)).
1233+
// (the [Artifact Registry](https://cloud.google.com/artifact-registry/)).
12371234
//
12381235
// If unspecified, no scopes are added, unless Cloud Logging or Cloud
12391236
// Monitoring are enabled, in which case their required scopes will be added.
@@ -1835,8 +1832,7 @@ message ContainerdConfig {
18351832
// domain names (FQDN) to a specific certificate.
18361833
message CertificateAuthorityDomainConfig {
18371834
// GCPSecretManagerCertificateConfig configures a secret from
1838-
// [Google Secret
1839-
// Manager](https://cloud.google.com/secret-manager).
1835+
// [Secret Manager](https://cloud.google.com/secret-manager).
18401836
message GCPSecretManagerCertificateConfig {
18411837
// Secret URI, in the form
18421838
// "projects/$PROJECT_ID/secrets/$SECRET_NAME/versions/$VERSION".
@@ -1985,7 +1981,7 @@ message NodeLabels {
19851981
map<string, string> labels = 1;
19861982
}
19871983

1988-
// Collection of [GCP
1984+
// Collection of [Resource Manager
19891985
// labels](https://cloud.google.com/resource-manager/docs/creating-managing-labels).
19901986
message ResourceLabels {
19911987
// Map of node label keys and node label values.
@@ -3820,6 +3816,9 @@ message ClusterUpdate {
38203816

38213817
// The desired network tier configuration for the cluster.
38223818
NetworkTierConfig desired_network_tier_config = 155;
3819+
3820+
// Configuration for sync Secret Manager secrets as k8s secrets.
3821+
SecretSyncConfig desired_secret_sync_config = 158;
38233822
}
38243823

38253824
// AdditionalPodRangesConfig is the configuration for additional pod secondary
@@ -5606,8 +5605,7 @@ message AutoprovisioningNodePoolDefaults {
56065605
// persistent storage on your nodes.
56075606
// * `https://www.googleapis.com/auth/devstorage.read_only` is required for
56085607
// communicating with **gcr.io**
5609-
// (the [Google Container
5610-
// Registry](https://cloud.google.com/container-registry/)).
5608+
// (the [Artifact Registry](https://cloud.google.com/artifact-registry/)).
56115609
//
56125610
// If unspecified, no scopes are added, unless Cloud Logging or Cloud
56135611
// Monitoring are enabled, in which case their required scopes will be added.

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

Lines changed: 712 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/google-container/protos/protos.js

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

0 commit comments

Comments
 (0)