Update k8s to #53965
Signed-off-by: Yanqiang Miao <miao.yanqiang@zte.com.cn>
This commit is contained in:
parent
3312c2f560
commit
72446e7e25
@ -68,5 +68,5 @@ k8s.io/apimachinery 4fd33e5925599d66528ef4f1a5c80f4aa2e27c98
|
|||||||
k8s.io/apiserver c1e53d745d0fe45bf7d5d44697e6eface25fceca
|
k8s.io/apiserver c1e53d745d0fe45bf7d5d44697e6eface25fceca
|
||||||
k8s.io/client-go 82aa063804cf055e16e8911250f888bc216e8b61
|
k8s.io/client-go 82aa063804cf055e16e8911250f888bc216e8b61
|
||||||
k8s.io/kube-openapi abfc5fbe1cf87ee697db107fdfd24c32fe4397a8
|
k8s.io/kube-openapi abfc5fbe1cf87ee697db107fdfd24c32fe4397a8
|
||||||
k8s.io/kubernetes d9bc7f0896091ba9879743fe4c9b27f352fe8289
|
k8s.io/kubernetes b958430ec2654bac10f74abbeab402c71cf5fa3b
|
||||||
k8s.io/utils 4fe312863be2155a7b68acd2aff1c9221b24e68c
|
k8s.io/utils 4fe312863be2155a7b68acd2aff1c9221b24e68c
|
||||||
|
1374
vendor/k8s.io/kubernetes/pkg/kubelet/apis/cri/v1alpha1/runtime/api.pb.go
generated
vendored
1374
vendor/k8s.io/kubernetes/pkg/kubelet/apis/cri/v1alpha1/runtime/api.pb.go
generated
vendored
File diff suppressed because it is too large
Load Diff
31
vendor/k8s.io/kubernetes/pkg/kubelet/apis/cri/v1alpha1/runtime/api.proto
generated
vendored
31
vendor/k8s.io/kubernetes/pkg/kubelet/apis/cri/v1alpha1/runtime/api.proto
generated
vendored
@ -331,6 +331,8 @@ message RemovePodSandboxResponse {}
|
|||||||
message PodSandboxStatusRequest {
|
message PodSandboxStatusRequest {
|
||||||
// ID of the PodSandbox for which to retrieve status.
|
// ID of the PodSandbox for which to retrieve status.
|
||||||
string pod_sandbox_id = 1;
|
string pod_sandbox_id = 1;
|
||||||
|
// Verbose indicates whether to return extra information about the pod sandbox.
|
||||||
|
bool verbose = 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
// PodSandboxNetworkStatus is the status of the network for a PodSandbox.
|
// PodSandboxNetworkStatus is the status of the network for a PodSandbox.
|
||||||
@ -382,6 +384,11 @@ message PodSandboxStatus {
|
|||||||
message PodSandboxStatusResponse {
|
message PodSandboxStatusResponse {
|
||||||
// Status of the PodSandbox.
|
// Status of the PodSandbox.
|
||||||
PodSandboxStatus status = 1;
|
PodSandboxStatus status = 1;
|
||||||
|
// Info is extra information of the PodSandbox. The key could be abitrary string, and
|
||||||
|
// value should be in json format. The information could include anything useful for
|
||||||
|
// debug, e.g. network namespace for linux container based container runtime.
|
||||||
|
// It should only be returned non-empty when Verbose is true.
|
||||||
|
map<string, string> info = 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
// PodSandboxStateValue is the wrapper of PodSandboxState.
|
// PodSandboxStateValue is the wrapper of PodSandboxState.
|
||||||
@ -747,6 +754,8 @@ message ListContainersResponse {
|
|||||||
message ContainerStatusRequest {
|
message ContainerStatusRequest {
|
||||||
// ID of the container for which to retrieve status.
|
// ID of the container for which to retrieve status.
|
||||||
string container_id = 1;
|
string container_id = 1;
|
||||||
|
// Verbose indicates whether to return extra information about the container.
|
||||||
|
bool verbose = 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
// ContainerStatus represents the status of a container.
|
// ContainerStatus represents the status of a container.
|
||||||
@ -791,6 +800,11 @@ message ContainerStatus {
|
|||||||
message ContainerStatusResponse {
|
message ContainerStatusResponse {
|
||||||
// Status of the container.
|
// Status of the container.
|
||||||
ContainerStatus status = 1;
|
ContainerStatus status = 1;
|
||||||
|
// Info is extra information of the Container. The key could be abitrary string, and
|
||||||
|
// value should be in json format. The information could include anything useful for
|
||||||
|
// debug, e.g. pid for linux container based container runtime.
|
||||||
|
// It should only be returned non-empty when Verbose is true.
|
||||||
|
map<string, string> info = 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
message UpdateContainerResourcesRequest {
|
message UpdateContainerResourcesRequest {
|
||||||
@ -920,11 +934,18 @@ message ListImagesResponse {
|
|||||||
message ImageStatusRequest {
|
message ImageStatusRequest {
|
||||||
// Spec of the image.
|
// Spec of the image.
|
||||||
ImageSpec image = 1;
|
ImageSpec image = 1;
|
||||||
|
// Verbose indicates whether to return extra information about the image.
|
||||||
|
bool verbose = 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
message ImageStatusResponse {
|
message ImageStatusResponse {
|
||||||
// Status of the image.
|
// Status of the image.
|
||||||
Image image = 1;
|
Image image = 1;
|
||||||
|
// Info is extra information of the Image. The key could be abitrary string, and
|
||||||
|
// value should be in json format. The information could include anything useful
|
||||||
|
// for debug, e.g. image config for oci image based container runtime.
|
||||||
|
// It should only be returned non-empty when Verbose is true.
|
||||||
|
map<string, string> info = 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
// AuthConfig contains authorization information for connecting to a registry.
|
// AuthConfig contains authorization information for connecting to a registry.
|
||||||
@ -1007,11 +1028,19 @@ message RuntimeStatus {
|
|||||||
repeated RuntimeCondition conditions = 1;
|
repeated RuntimeCondition conditions = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
message StatusRequest {}
|
message StatusRequest {
|
||||||
|
// Verbose indicates whether to return extra information about the runtime.
|
||||||
|
bool verbose = 1;
|
||||||
|
}
|
||||||
|
|
||||||
message StatusResponse {
|
message StatusResponse {
|
||||||
// Status of the Runtime.
|
// Status of the Runtime.
|
||||||
RuntimeStatus status = 1;
|
RuntimeStatus status = 1;
|
||||||
|
// Info is extra information of the Runtime. The key could be abitrary string, and
|
||||||
|
// value should be in json format. The information could include anything useful for
|
||||||
|
// debug, e.g. plugins used by the container runtime.
|
||||||
|
// It should only be returned non-empty when Verbose is true.
|
||||||
|
map<string, string> info = 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
message ImageFsInfoRequest {}
|
message ImageFsInfoRequest {}
|
||||||
|
Loading…
Reference in New Issue
Block a user