cri types changes

This commit is contained in:
Khaled Henidak(Kal) 2019-05-31 20:46:17 +00:00
parent a51b8ce456
commit 404dbbcfe0
2 changed files with 589 additions and 380 deletions

View File

@ -396,10 +396,17 @@ message PodSandboxStatusRequest {
bool verbose = 2;
}
// PodIP represents an ip of a Pod
message PodIP{
// an ip is a string representation of an IPv4 or an IPv6
string ip = 1;
}
// PodSandboxNetworkStatus is the status of the network for a PodSandbox.
message PodSandboxNetworkStatus {
// IP address of the PodSandbox.
string ip = 1;
// list of additional ips (not inclusive of PodSandboxNetworkStatus.Ip) of the PodSandBoxNetworkStatus
repeated PodIP additional_ips = 2;
}
// Namespace contains paths to the namespaces.