Skip to content

Commit

Permalink
fix: [container] Deprecate "EXPERIMENTAL" option for Gateway API (thi…
Browse files Browse the repository at this point in the history
…s 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]>
  • Loading branch information
3 people authored Jul 15, 2024
1 parent 6c81e1f commit c06cdc7
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4540,8 +4540,9 @@ message GatewayAPIConfig {
// Gateway API support is disabled
CHANNEL_DISABLED = 1;

// Deprecated: use CHANNEL_STANDARD instead.
// Gateway API support is enabled, experimental CRDs are installed
CHANNEL_EXPERIMENTAL = 3;
CHANNEL_EXPERIMENTAL = 3 [deprecated = true];

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

// KUBELET
KUBELET = 14;

// NVIDIA Data Center GPU Manager (DCGM)
DCGM = 15;
}

// Select components to collect metrics. An empty set would disable all
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6096,6 +6096,9 @@ message MonitoringComponentConfig {

// KUBELET
KUBELET = 14;

// NVIDIA Data Center GPU Manager (DCGM)
DCGM = 15;
}

// Select components to collect metrics. An empty set would disable all
Expand Down
6 changes: 4 additions & 2 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.

14 changes: 14 additions & 0 deletions packages/google-container/protos/protos.js

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

11 changes: 9 additions & 2 deletions packages/google-container/protos/protos.json

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

0 comments on commit c06cdc7

Please sign in to comment.