Skip to content

Commit c06cdc7

Browse files
fix: [container] Deprecate "EXPERIMENTAL" option for Gateway API (this value has never been supported) (#5535)
* feat: add DCGM enum in monitoring config PiperOrigin-RevId: 650740847 Source-Link: googleapis/googleapis@8176cd8 Source-Link: googleapis/googleapis-gen@f9af3df Copy-Tag: eyJwIjoicGFja2FnZXMvZ29vZ2xlLWNvbnRhaW5lci8uT3dsQm90LnlhbWwiLCJoIjoiZjlhZjNkZjk5MjkyOGY1ODg1OTJjNzE4Mjg5OWM4NmQ4ODAyYzc0YSJ9 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * fix: Deprecate "EXPERIMENTAL" option for Gateway API (this value has never been supported) feat: add DCGM enum in monitoring config PiperOrigin-RevId: 651124125 Source-Link: googleapis/googleapis@99ca978 Source-Link: googleapis/googleapis-gen@6622e61 Copy-Tag: eyJwIjoicGFja2FnZXMvZ29vZ2xlLWNvbnRhaW5lci8uT3dsQm90LnlhbWwiLCJoIjoiNjYyMmU2MWUxOTMwODEyYzFjYzA2NTNjMzViMGRhMGJmYzY3ZWZjMCJ9 * 🦉 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 6c81e1f commit c06cdc7

5 files changed

Lines changed: 35 additions & 5 deletions

File tree

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4540,8 +4540,9 @@ message GatewayAPIConfig {
45404540
// Gateway API support is disabled
45414541
CHANNEL_DISABLED = 1;
45424542

4543+
// Deprecated: use CHANNEL_STANDARD instead.
45434544
// Gateway API support is enabled, experimental CRDs are installed
4544-
CHANNEL_EXPERIMENTAL = 3;
4545+
CHANNEL_EXPERIMENTAL = 3 [deprecated = true];
45454546

45464547
// Gateway API support is enabled, standard CRDs are installed
45474548
CHANNEL_STANDARD = 4;
@@ -5386,6 +5387,9 @@ message MonitoringComponentConfig {
53865387

53875388
// KUBELET
53885389
KUBELET = 14;
5390+
5391+
// NVIDIA Data Center GPU Manager (DCGM)
5392+
DCGM = 15;
53895393
}
53905394

53915395
// Select components to collect metrics. An empty set would disable all

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6096,6 +6096,9 @@ message MonitoringComponentConfig {
60966096

60976097
// KUBELET
60986098
KUBELET = 14;
6099+
6100+
// NVIDIA Data Center GPU Manager (DCGM)
6101+
DCGM = 15;
60996102
}
61006103

61016104
// Select components to collect metrics. An empty set would disable all

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

Lines changed: 4 additions & 2 deletions
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: 14 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/google-container/protos/protos.json

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

0 commit comments

Comments
 (0)