Skip to content

Commit 99ca978

Browse files
Google APIscopybara-github
authored andcommitted
fix: Deprecate "EXPERIMENTAL" option for Gateway API (this value has never been supported)
feat: add DCGM enum in monitoring config PiperOrigin-RevId: 651124125
1 parent ecbfd84 commit 99ca978

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

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

0 commit comments

Comments
 (0)