Unverified Commit 063e7ff3 authored by Kubernetes Prow Robot's avatar Kubernetes Prow Robot Committed by GitHub

Merge pull request #73833 from haiyanmeng/cri_runtimeclass

Add `runtime_handler` into PodSandbox and PodSandboxStatus
parents 5aaf6cd6 c3533580
...@@ -440,6 +440,8 @@ message PodSandboxStatus { ...@@ -440,6 +440,8 @@ message PodSandboxStatus {
// MUST be identical to that of the corresponding PodSandboxConfig used to // MUST be identical to that of the corresponding PodSandboxConfig used to
// instantiate the pod sandbox this status represents. // instantiate the pod sandbox this status represents.
map<string, string> annotations = 8; map<string, string> annotations = 8;
// runtime configuration used for this PodSandbox.
string runtime_handler = 9;
} }
message PodSandboxStatusResponse { message PodSandboxStatusResponse {
...@@ -494,6 +496,8 @@ message PodSandbox { ...@@ -494,6 +496,8 @@ message PodSandbox {
// MUST be identical to that of the corresponding PodSandboxConfig used to // MUST be identical to that of the corresponding PodSandboxConfig used to
// instantiate this PodSandbox. // instantiate this PodSandbox.
map<string, string> annotations = 6; map<string, string> annotations = 6;
// runtime configuration used for this PodSandbox.
string runtime_handler = 7;
} }
message ListPodSandboxResponse { message ListPodSandboxResponse {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment