From 9837a61528f8d4de4cb1556f39bfa22d2e9e3924 Mon Sep 17 00:00:00 2001 From: Mark Rossett Date: Fri, 31 Jan 2025 13:51:46 -0800 Subject: [PATCH] update cri-api comments for Windows HostProcess withdrawal --- staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.pb.go | 2 +- staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.proto | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.pb.go b/staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.pb.go index c0284cca5b9..8d261618697 100644 --- a/staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.pb.go +++ b/staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.pb.go @@ -4398,7 +4398,7 @@ func (m *LinuxContainerUser) GetSupplementalGroups() []int64 { // WindowsNamespaceOption provides options for Windows namespaces. type WindowsNamespaceOption struct { // Network namespace for this container/sandbox. - // Namespaces currently set by the kubelet: POD, NODE + // This is currently never set by the kubelet Network NamespaceMode `protobuf:"varint,1,opt,name=network,proto3,enum=runtime.v1.NamespaceMode" json:"network,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_sizecache int32 `json:"-"` diff --git a/staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.proto b/staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.proto index fec760e6a63..2f171610579 100644 --- a/staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.proto +++ b/staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.proto @@ -1011,7 +1011,7 @@ message LinuxContainerUser { // WindowsNamespaceOption provides options for Windows namespaces. message WindowsNamespaceOption { // Network namespace for this container/sandbox. - // Namespaces currently set by the kubelet: POD, NODE + // This is currently never set by the kubelet NamespaceMode network = 1; }