sandbox: add address info in Start and Status response
Signed-off-by: Abel Feng <fshb1988@gmail.com>
This commit is contained in:
		| @@ -5506,6 +5506,27 @@ file { | ||||
|       type_name: ".containerd.services.sandbox.v1.ControllerStartResponse.LabelsEntry" | ||||
|       json_name: "labels" | ||||
|     } | ||||
|     field { | ||||
|       name: "address" | ||||
|       number: 5 | ||||
|       label: LABEL_OPTIONAL | ||||
|       type: TYPE_STRING | ||||
|       json_name: "address" | ||||
|     } | ||||
|     field { | ||||
|       name: "version" | ||||
|       number: 6 | ||||
|       label: LABEL_OPTIONAL | ||||
|       type: TYPE_UINT32 | ||||
|       json_name: "version" | ||||
|     } | ||||
|     field { | ||||
|       name: "protocol" | ||||
|       number: 7 | ||||
|       label: LABEL_OPTIONAL | ||||
|       type: TYPE_STRING | ||||
|       json_name: "protocol" | ||||
|     } | ||||
|     nested_type { | ||||
|       name: "LabelsEntry" | ||||
|       field { | ||||
| @@ -5696,6 +5717,27 @@ file { | ||||
|       type_name: ".google.protobuf.Any" | ||||
|       json_name: "extra" | ||||
|     } | ||||
|     field { | ||||
|       name: "address" | ||||
|       number: 8 | ||||
|       label: LABEL_OPTIONAL | ||||
|       type: TYPE_STRING | ||||
|       json_name: "address" | ||||
|     } | ||||
|     field { | ||||
|       name: "version" | ||||
|       number: 9 | ||||
|       label: LABEL_OPTIONAL | ||||
|       type: TYPE_UINT32 | ||||
|       json_name: "version" | ||||
|     } | ||||
|     field { | ||||
|       name: "protocol" | ||||
|       number: 10 | ||||
|       label: LABEL_OPTIONAL | ||||
|       type: TYPE_STRING | ||||
|       json_name: "protocol" | ||||
|     } | ||||
|     nested_type { | ||||
|       name: "InfoEntry" | ||||
|       field { | ||||
|   | ||||
| @@ -713,6 +713,9 @@ type ControllerStartResponse struct { | ||||
| 	Pid       uint32                 `protobuf:"varint,2,opt,name=pid,proto3" json:"pid,omitempty"` | ||||
| 	CreatedAt *timestamppb.Timestamp `protobuf:"bytes,3,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"` | ||||
| 	Labels    map[string]string      `protobuf:"bytes,4,rep,name=labels,proto3" json:"labels,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` | ||||
| 	Address   string                 `protobuf:"bytes,5,opt,name=address,proto3" json:"address,omitempty"` | ||||
| 	Version   uint32                 `protobuf:"varint,6,opt,name=version,proto3" json:"version,omitempty"` | ||||
| 	Protocol  string                 `protobuf:"bytes,7,opt,name=protocol,proto3" json:"protocol,omitempty"` | ||||
| } | ||||
|  | ||||
| func (x *ControllerStartResponse) Reset() { | ||||
| @@ -775,6 +778,27 @@ func (x *ControllerStartResponse) GetLabels() map[string]string { | ||||
| 	return nil | ||||
| } | ||||
|  | ||||
| func (x *ControllerStartResponse) GetAddress() string { | ||||
| 	if x != nil { | ||||
| 		return x.Address | ||||
| 	} | ||||
| 	return "" | ||||
| } | ||||
|  | ||||
| func (x *ControllerStartResponse) GetVersion() uint32 { | ||||
| 	if x != nil { | ||||
| 		return x.Version | ||||
| 	} | ||||
| 	return 0 | ||||
| } | ||||
|  | ||||
| func (x *ControllerStartResponse) GetProtocol() string { | ||||
| 	if x != nil { | ||||
| 		return x.Protocol | ||||
| 	} | ||||
| 	return "" | ||||
| } | ||||
|  | ||||
| type ControllerPlatformRequest struct { | ||||
| 	state         protoimpl.MessageState | ||||
| 	sizeCache     protoimpl.SizeCache | ||||
| @@ -1163,6 +1187,9 @@ type ControllerStatusResponse struct { | ||||
| 	CreatedAt *timestamppb.Timestamp `protobuf:"bytes,5,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"` | ||||
| 	ExitedAt  *timestamppb.Timestamp `protobuf:"bytes,6,opt,name=exited_at,json=exitedAt,proto3" json:"exited_at,omitempty"` | ||||
| 	Extra     *anypb.Any             `protobuf:"bytes,7,opt,name=extra,proto3" json:"extra,omitempty"` | ||||
| 	Address   string                 `protobuf:"bytes,8,opt,name=address,proto3" json:"address,omitempty"` | ||||
| 	Version   uint32                 `protobuf:"varint,9,opt,name=version,proto3" json:"version,omitempty"` | ||||
| 	Protocol  string                 `protobuf:"bytes,10,opt,name=protocol,proto3" json:"protocol,omitempty"` | ||||
| } | ||||
|  | ||||
| func (x *ControllerStatusResponse) Reset() { | ||||
| @@ -1246,6 +1273,27 @@ func (x *ControllerStatusResponse) GetExtra() *anypb.Any { | ||||
| 	return nil | ||||
| } | ||||
|  | ||||
| func (x *ControllerStatusResponse) GetAddress() string { | ||||
| 	if x != nil { | ||||
| 		return x.Address | ||||
| 	} | ||||
| 	return "" | ||||
| } | ||||
|  | ||||
| func (x *ControllerStatusResponse) GetVersion() uint32 { | ||||
| 	if x != nil { | ||||
| 		return x.Version | ||||
| 	} | ||||
| 	return 0 | ||||
| } | ||||
|  | ||||
| func (x *ControllerStatusResponse) GetProtocol() string { | ||||
| 	if x != nil { | ||||
| 		return x.Protocol | ||||
| 	} | ||||
| 	return "" | ||||
| } | ||||
|  | ||||
| type ControllerShutdownRequest struct { | ||||
| 	state         protoimpl.MessageState | ||||
| 	sizeCache     protoimpl.SizeCache | ||||
| @@ -1542,7 +1590,7 @@ var file_github_com_containerd_containerd_api_services_sandbox_v1_sandbox_proto_ | ||||
| 	0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x61, 0x6e, 0x64, 0x62, 0x6f, | ||||
| 	0x78, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x61, 0x6e, 0x64, 0x62, 0x6f, 0x78, 0x65, 0x72, | ||||
| 	0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x61, 0x6e, 0x64, 0x62, 0x6f, 0x78, 0x65, | ||||
| 	0x72, 0x22, 0x9d, 0x02, 0x0a, 0x17, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x6c, 0x65, 0x72, | ||||
| 	0x72, 0x22, 0xed, 0x02, 0x0a, 0x17, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x6c, 0x65, 0x72, | ||||
| 	0x53, 0x74, 0x61, 0x72, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1d, 0x0a, | ||||
| 	0x0a, 0x73, 0x61, 0x6e, 0x64, 0x62, 0x6f, 0x78, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, | ||||
| 	0x09, 0x52, 0x09, 0x73, 0x61, 0x6e, 0x64, 0x62, 0x6f, 0x78, 0x49, 0x64, 0x12, 0x10, 0x0a, 0x03, | ||||
| @@ -1556,7 +1604,12 @@ var file_github_com_containerd_containerd_api_services_sandbox_v1_sandbox_proto_ | ||||
| 	0x73, 0x61, 0x6e, 0x64, 0x62, 0x6f, 0x78, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x6f, 0x6e, 0x74, 0x72, | ||||
| 	0x6f, 0x6c, 0x6c, 0x65, 0x72, 0x53, 0x74, 0x61, 0x72, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, | ||||
| 	0x73, 0x65, 0x2e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x06, | ||||
| 	0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x1a, 0x39, 0x0a, 0x0b, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x73, | ||||
| 	0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, | ||||
| 	0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, | ||||
| 	0x12, 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, | ||||
| 	0x0d, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x72, | ||||
| 	0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x72, | ||||
| 	0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x1a, 0x39, 0x0a, 0x0b, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x73, | ||||
| 	0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, | ||||
| 	0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, | ||||
| 	0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, | ||||
| @@ -1600,7 +1653,7 @@ var file_github_com_containerd_containerd_api_services_sandbox_v1_sandbox_proto_ | ||||
| 	0x6f, 0x73, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x76, 0x65, 0x72, 0x62, 0x6f, | ||||
| 	0x73, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x61, 0x6e, 0x64, 0x62, 0x6f, 0x78, 0x65, 0x72, 0x18, | ||||
| 	0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x61, 0x6e, 0x64, 0x62, 0x6f, 0x78, 0x65, 0x72, | ||||
| 	0x22, 0x92, 0x03, 0x0a, 0x18, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x6c, 0x65, 0x72, 0x53, | ||||
| 	0x22, 0xe2, 0x03, 0x0a, 0x18, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x6c, 0x65, 0x72, 0x53, | ||||
| 	0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1d, 0x0a, | ||||
| 	0x0a, 0x73, 0x61, 0x6e, 0x64, 0x62, 0x6f, 0x78, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, | ||||
| 	0x09, 0x52, 0x09, 0x73, 0x61, 0x6e, 0x64, 0x62, 0x6f, 0x78, 0x49, 0x64, 0x12, 0x10, 0x0a, 0x03, | ||||
| @@ -1621,7 +1674,12 @@ var file_github_com_containerd_containerd_api_services_sandbox_v1_sandbox_proto_ | ||||
| 	0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x08, 0x65, 0x78, 0x69, 0x74, 0x65, 0x64, 0x41, 0x74, | ||||
| 	0x12, 0x2a, 0x0a, 0x05, 0x65, 0x78, 0x74, 0x72, 0x61, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, | ||||
| 	0x14, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, | ||||
| 	0x66, 0x2e, 0x41, 0x6e, 0x79, 0x52, 0x05, 0x65, 0x78, 0x74, 0x72, 0x61, 0x1a, 0x37, 0x0a, 0x09, | ||||
| 	0x66, 0x2e, 0x41, 0x6e, 0x79, 0x52, 0x05, 0x65, 0x78, 0x74, 0x72, 0x61, 0x12, 0x18, 0x0a, 0x07, | ||||
| 	0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, | ||||
| 	0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, | ||||
| 	0x6e, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, | ||||
| 	0x12, 0x1a, 0x0a, 0x08, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x18, 0x0a, 0x20, 0x01, | ||||
| 	0x28, 0x09, 0x52, 0x08, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x1a, 0x37, 0x0a, 0x09, | ||||
| 	0x49, 0x6e, 0x66, 0x6f, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, | ||||
| 	0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, | ||||
| 	0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, | ||||
|   | ||||
| @@ -120,6 +120,9 @@ message ControllerStartResponse { | ||||
| 	uint32 pid = 2; | ||||
| 	google.protobuf.Timestamp created_at = 3; | ||||
| 	map<string, string> labels = 4; | ||||
| 	string address = 5; | ||||
| 	uint32 version = 6; | ||||
| 	string protocol = 7; | ||||
| } | ||||
|  | ||||
| message ControllerPlatformRequest { | ||||
| @@ -163,6 +166,9 @@ message ControllerStatusResponse { | ||||
| 	google.protobuf.Timestamp created_at = 5; | ||||
| 	google.protobuf.Timestamp exited_at = 6; | ||||
| 	google.protobuf.Any extra = 7; | ||||
| 	string address = 8; | ||||
| 	uint32 version = 9; | ||||
| 	string protocol = 10; | ||||
| } | ||||
|  | ||||
| message ControllerShutdownRequest { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Abel Feng
					Abel Feng