diff --git a/cmd/isulad_img/grpc.go b/cmd/isulad_img/grpc.go index 9268de4af7b1ccc1b60295f21c00f73c4a414b6a..fc4bb049644156cd0f4cf5f2747dd1ce0d1130a8 100644 --- a/cmd/isulad_img/grpc.go +++ b/cmd/isulad_img/grpc.go @@ -184,6 +184,16 @@ func transPBImageToImage(pbImage *pb.Image) (*Image, error) { Created: &created, Loaded: &loaded, } + if pbImage.Healthcheck != nil { + respImg.Healthcheck = &HealthConfig{ + Test: pbImage.Healthcheck.Test, + Interval: time.Duration(pbImage.Healthcheck.Interval), + Timeout: time.Duration(pbImage.Healthcheck.Timeout), + StartPeriod: time.Duration(pbImage.Healthcheck.StartPeriod), + Retries: int(pbImage.Healthcheck.Retries), + ExitOnUnhealthy: pbImage.Healthcheck.ExitOnUnhealthy, + } + } if pbImage.Spec != nil && pbImage.Spec.Image != "" { err = json.Unmarshal([]byte(pbImage.Spec.Image), &respImg.ImageSpec) @@ -228,6 +238,16 @@ func transImageToPBImage(img *Image) (*pb.Image, error) { Created: created, Loaded: loaded, } + if img.Healthcheck != nil { + respImg.Healthcheck = &pb.HealthCheck{ + Test: img.Healthcheck.Test, + Interval: int64(img.Healthcheck.Interval), + Timeout: int64(img.Healthcheck.Timeout), + StartPeriod: int64(img.Healthcheck.StartPeriod), + Retries: int32(img.Healthcheck.Retries), + ExitOnUnhealthy: img.Healthcheck.ExitOnUnhealthy, + } + } spec, err := json.Marshal(img.ImageSpec) if err != nil { diff --git a/iSulad-img.spec b/iSulad-img.spec index 16ccf8986b9e5bb74595eb9349250f2d31c0e3ec..47611fde0e09a8cb79175c536bf0d8e11dffef75 100644 --- a/iSulad-img.spec +++ b/iSulad-img.spec @@ -1,5 +1,5 @@ %global _version 2.0.0 -%global _release 20200327.102036.git7eadc513 +%global _release 20200330.224937.git01999b6e Name: iSulad-img Version: %{_version} Release: %{_release} diff --git a/isula/isula_image.pb.go b/isula/isula_image.pb.go index d40221aefd7207e2da78831273d75cc019438214..2f54c9480819a7c02d22911b559813f9a1aea568 100644 --- a/isula/isula_image.pb.go +++ b/isula/isula_image.pb.go @@ -43,7 +43,7 @@ func (x Protocol) String() string { return proto.EnumName(Protocol_name, int32(x)) } func (Protocol) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_isula_image_9d49025646188a13, []int{0} + return fileDescriptor_isula_image_45c151dee08c5805, []int{0} } type MountPropagation int32 @@ -73,7 +73,7 @@ func (x MountPropagation) String() string { return proto.EnumName(MountPropagation_name, int32(x)) } func (MountPropagation) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_isula_image_9d49025646188a13, []int{1} + return fileDescriptor_isula_image_45c151dee08c5805, []int{1} } type HealthCheckRequest struct { @@ -86,7 +86,7 @@ func (m *HealthCheckRequest) Reset() { *m = HealthCheckRequest{} } func (m *HealthCheckRequest) String() string { return proto.CompactTextString(m) } func (*HealthCheckRequest) ProtoMessage() {} func (*HealthCheckRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_9d49025646188a13, []int{0} + return fileDescriptor_isula_image_45c151dee08c5805, []int{0} } func (m *HealthCheckRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_HealthCheckRequest.Unmarshal(m, b) @@ -118,7 +118,7 @@ func (m *HealthCheckResponse) Reset() { *m = HealthCheckResponse{} } func (m *HealthCheckResponse) String() string { return proto.CompactTextString(m) } func (*HealthCheckResponse) ProtoMessage() {} func (*HealthCheckResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_9d49025646188a13, []int{1} + return fileDescriptor_isula_image_45c151dee08c5805, []int{1} } func (m *HealthCheckResponse) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_HealthCheckResponse.Unmarshal(m, b) @@ -165,7 +165,7 @@ func (m *LoginRequest) Reset() { *m = LoginRequest{} } func (m *LoginRequest) String() string { return proto.CompactTextString(m) } func (*LoginRequest) ProtoMessage() {} func (*LoginRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_9d49025646188a13, []int{2} + return fileDescriptor_isula_image_45c151dee08c5805, []int{2} } func (m *LoginRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_LoginRequest.Unmarshal(m, b) @@ -218,7 +218,7 @@ func (m *LoginResponse) Reset() { *m = LoginResponse{} } func (m *LoginResponse) String() string { return proto.CompactTextString(m) } func (*LoginResponse) ProtoMessage() {} func (*LoginResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_9d49025646188a13, []int{3} + return fileDescriptor_isula_image_45c151dee08c5805, []int{3} } func (m *LoginResponse) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_LoginResponse.Unmarshal(m, b) @@ -263,7 +263,7 @@ func (m *LogoutRequest) Reset() { *m = LogoutRequest{} } func (m *LogoutRequest) String() string { return proto.CompactTextString(m) } func (*LogoutRequest) ProtoMessage() {} func (*LogoutRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_9d49025646188a13, []int{4} + return fileDescriptor_isula_image_45c151dee08c5805, []int{4} } func (m *LogoutRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_LogoutRequest.Unmarshal(m, b) @@ -302,7 +302,7 @@ func (m *LogoutResponse) Reset() { *m = LogoutResponse{} } func (m *LogoutResponse) String() string { return proto.CompactTextString(m) } func (*LogoutResponse) ProtoMessage() {} func (*LogoutResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_9d49025646188a13, []int{5} + return fileDescriptor_isula_image_45c151dee08c5805, []int{5} } func (m *LogoutResponse) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_LogoutResponse.Unmarshal(m, b) @@ -351,7 +351,7 @@ func (m *ContainerExportRequest) Reset() { *m = ContainerExportRequest{} func (m *ContainerExportRequest) String() string { return proto.CompactTextString(m) } func (*ContainerExportRequest) ProtoMessage() {} func (*ContainerExportRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_9d49025646188a13, []int{6} + return fileDescriptor_isula_image_45c151dee08c5805, []int{6} } func (m *ContainerExportRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_ContainerExportRequest.Unmarshal(m, b) @@ -418,7 +418,7 @@ func (m *ContainerExportResponse) Reset() { *m = ContainerExportResponse func (m *ContainerExportResponse) String() string { return proto.CompactTextString(m) } func (*ContainerExportResponse) ProtoMessage() {} func (*ContainerExportResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_9d49025646188a13, []int{7} + return fileDescriptor_isula_image_45c151dee08c5805, []int{7} } func (m *ContainerExportResponse) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_ContainerExportResponse.Unmarshal(m, b) @@ -464,7 +464,7 @@ func (m *LoadImageRequest) Reset() { *m = LoadImageRequest{} } func (m *LoadImageRequest) String() string { return proto.CompactTextString(m) } func (*LoadImageRequest) ProtoMessage() {} func (*LoadImageRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_9d49025646188a13, []int{8} + return fileDescriptor_isula_image_45c151dee08c5805, []int{8} } func (m *LoadImageRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_LoadImageRequest.Unmarshal(m, b) @@ -511,7 +511,7 @@ func (m *LoadImageResponose) Reset() { *m = LoadImageResponose{} } func (m *LoadImageResponose) String() string { return proto.CompactTextString(m) } func (*LoadImageResponose) ProtoMessage() {} func (*LoadImageResponose) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_9d49025646188a13, []int{9} + return fileDescriptor_isula_image_45c151dee08c5805, []int{9} } func (m *LoadImageResponose) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_LoadImageResponose.Unmarshal(m, b) @@ -562,7 +562,7 @@ func (m *GraphdriverStatusRequest) Reset() { *m = GraphdriverStatusReque func (m *GraphdriverStatusRequest) String() string { return proto.CompactTextString(m) } func (*GraphdriverStatusRequest) ProtoMessage() {} func (*GraphdriverStatusRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_9d49025646188a13, []int{10} + return fileDescriptor_isula_image_45c151dee08c5805, []int{10} } func (m *GraphdriverStatusRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_GraphdriverStatusRequest.Unmarshal(m, b) @@ -595,7 +595,7 @@ func (m *GraphdriverStatusResponse) Reset() { *m = GraphdriverStatusResp func (m *GraphdriverStatusResponse) String() string { return proto.CompactTextString(m) } func (*GraphdriverStatusResponse) ProtoMessage() {} func (*GraphdriverStatusResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_9d49025646188a13, []int{11} + return fileDescriptor_isula_image_45c151dee08c5805, []int{11} } func (m *GraphdriverStatusResponse) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_GraphdriverStatusResponse.Unmarshal(m, b) @@ -647,7 +647,7 @@ func (m *GraphdriverMetadataRequest) Reset() { *m = GraphdriverMetadataR func (m *GraphdriverMetadataRequest) String() string { return proto.CompactTextString(m) } func (*GraphdriverMetadataRequest) ProtoMessage() {} func (*GraphdriverMetadataRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_9d49025646188a13, []int{12} + return fileDescriptor_isula_image_45c151dee08c5805, []int{12} } func (m *GraphdriverMetadataRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_GraphdriverMetadataRequest.Unmarshal(m, b) @@ -688,7 +688,7 @@ func (m *GraphdriverMetadataResponse) Reset() { *m = GraphdriverMetadata func (m *GraphdriverMetadataResponse) String() string { return proto.CompactTextString(m) } func (*GraphdriverMetadataResponse) ProtoMessage() {} func (*GraphdriverMetadataResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_9d49025646188a13, []int{13} + return fileDescriptor_isula_image_45c151dee08c5805, []int{13} } func (m *GraphdriverMetadataResponse) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_GraphdriverMetadataResponse.Unmarshal(m, b) @@ -747,7 +747,7 @@ func (m *ContainerFsUsageRequest) Reset() { *m = ContainerFsUsageRequest func (m *ContainerFsUsageRequest) String() string { return proto.CompactTextString(m) } func (*ContainerFsUsageRequest) ProtoMessage() {} func (*ContainerFsUsageRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_9d49025646188a13, []int{14} + return fileDescriptor_isula_image_45c151dee08c5805, []int{14} } func (m *ContainerFsUsageRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_ContainerFsUsageRequest.Unmarshal(m, b) @@ -787,7 +787,7 @@ func (m *ContainerFsUsageResponse) Reset() { *m = ContainerFsUsageRespon func (m *ContainerFsUsageResponse) String() string { return proto.CompactTextString(m) } func (*ContainerFsUsageResponse) ProtoMessage() {} func (*ContainerFsUsageResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_9d49025646188a13, []int{15} + return fileDescriptor_isula_image_45c151dee08c5805, []int{15} } func (m *ContainerFsUsageResponse) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_ContainerFsUsageResponse.Unmarshal(m, b) @@ -840,7 +840,7 @@ func (m *ContainerUmountRequest) Reset() { *m = ContainerUmountRequest{} func (m *ContainerUmountRequest) String() string { return proto.CompactTextString(m) } func (*ContainerUmountRequest) ProtoMessage() {} func (*ContainerUmountRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_9d49025646188a13, []int{16} + return fileDescriptor_isula_image_45c151dee08c5805, []int{16} } func (m *ContainerUmountRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_ContainerUmountRequest.Unmarshal(m, b) @@ -886,7 +886,7 @@ func (m *ContainerUmountResponse) Reset() { *m = ContainerUmountResponse func (m *ContainerUmountResponse) String() string { return proto.CompactTextString(m) } func (*ContainerUmountResponse) ProtoMessage() {} func (*ContainerUmountResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_9d49025646188a13, []int{17} + return fileDescriptor_isula_image_45c151dee08c5805, []int{17} } func (m *ContainerUmountResponse) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_ContainerUmountResponse.Unmarshal(m, b) @@ -931,7 +931,7 @@ func (m *ContainerMountRequest) Reset() { *m = ContainerMountRequest{} } func (m *ContainerMountRequest) String() string { return proto.CompactTextString(m) } func (*ContainerMountRequest) ProtoMessage() {} func (*ContainerMountRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_9d49025646188a13, []int{18} + return fileDescriptor_isula_image_45c151dee08c5805, []int{18} } func (m *ContainerMountRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_ContainerMountRequest.Unmarshal(m, b) @@ -970,7 +970,7 @@ func (m *ContainerMountResponse) Reset() { *m = ContainerMountResponse{} func (m *ContainerMountResponse) String() string { return proto.CompactTextString(m) } func (*ContainerMountResponse) ProtoMessage() {} func (*ContainerMountResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_9d49025646188a13, []int{19} + return fileDescriptor_isula_image_45c151dee08c5805, []int{19} } func (m *ContainerMountResponse) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_ContainerMountResponse.Unmarshal(m, b) @@ -1015,7 +1015,7 @@ func (m *ContainerRemoveRequest) Reset() { *m = ContainerRemoveRequest{} func (m *ContainerRemoveRequest) String() string { return proto.CompactTextString(m) } func (*ContainerRemoveRequest) ProtoMessage() {} func (*ContainerRemoveRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_9d49025646188a13, []int{20} + return fileDescriptor_isula_image_45c151dee08c5805, []int{20} } func (m *ContainerRemoveRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_ContainerRemoveRequest.Unmarshal(m, b) @@ -1054,7 +1054,7 @@ func (m *ContainerRemoveResponse) Reset() { *m = ContainerRemoveResponse func (m *ContainerRemoveResponse) String() string { return proto.CompactTextString(m) } func (*ContainerRemoveResponse) ProtoMessage() {} func (*ContainerRemoveResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_9d49025646188a13, []int{21} + return fileDescriptor_isula_image_45c151dee08c5805, []int{21} } func (m *ContainerRemoveResponse) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_ContainerRemoveResponse.Unmarshal(m, b) @@ -1102,7 +1102,7 @@ func (m *ContainerPrepareRequest) Reset() { *m = ContainerPrepareRequest func (m *ContainerPrepareRequest) String() string { return proto.CompactTextString(m) } func (*ContainerPrepareRequest) ProtoMessage() {} func (*ContainerPrepareRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_9d49025646188a13, []int{22} + return fileDescriptor_isula_image_45c151dee08c5805, []int{22} } func (m *ContainerPrepareRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_ContainerPrepareRequest.Unmarshal(m, b) @@ -1164,7 +1164,7 @@ func (m *ContainerPrepareResponse) Reset() { *m = ContainerPrepareRespon func (m *ContainerPrepareResponse) String() string { return proto.CompactTextString(m) } func (*ContainerPrepareResponse) ProtoMessage() {} func (*ContainerPrepareResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_9d49025646188a13, []int{23} + return fileDescriptor_isula_image_45c151dee08c5805, []int{23} } func (m *ContainerPrepareResponse) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_ContainerPrepareResponse.Unmarshal(m, b) @@ -1222,7 +1222,7 @@ func (m *ListContainersRequest) Reset() { *m = ListContainersRequest{} } func (m *ListContainersRequest) String() string { return proto.CompactTextString(m) } func (*ListContainersRequest) ProtoMessage() {} func (*ListContainersRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_9d49025646188a13, []int{24} + return fileDescriptor_isula_image_45c151dee08c5805, []int{24} } func (m *ListContainersRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_ListContainersRequest.Unmarshal(m, b) @@ -1255,7 +1255,7 @@ func (m *ListContainersResponse) Reset() { *m = ListContainersResponse{} func (m *ListContainersResponse) String() string { return proto.CompactTextString(m) } func (*ListContainersResponse) ProtoMessage() {} func (*ListContainersResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_9d49025646188a13, []int{25} + return fileDescriptor_isula_image_45c151dee08c5805, []int{25} } func (m *ListContainersResponse) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_ListContainersResponse.Unmarshal(m, b) @@ -1314,7 +1314,7 @@ func (m *DNSConfig) Reset() { *m = DNSConfig{} } func (m *DNSConfig) String() string { return proto.CompactTextString(m) } func (*DNSConfig) ProtoMessage() {} func (*DNSConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_9d49025646188a13, []int{26} + return fileDescriptor_isula_image_45c151dee08c5805, []int{26} } func (m *DNSConfig) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_DNSConfig.Unmarshal(m, b) @@ -1374,7 +1374,7 @@ func (m *PortMapping) Reset() { *m = PortMapping{} } func (m *PortMapping) String() string { return proto.CompactTextString(m) } func (*PortMapping) ProtoMessage() {} func (*PortMapping) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_9d49025646188a13, []int{27} + return fileDescriptor_isula_image_45c151dee08c5805, []int{27} } func (m *PortMapping) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_PortMapping.Unmarshal(m, b) @@ -1443,7 +1443,7 @@ func (m *Mount) Reset() { *m = Mount{} } func (m *Mount) String() string { return proto.CompactTextString(m) } func (*Mount) ProtoMessage() {} func (*Mount) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_9d49025646188a13, []int{28} + return fileDescriptor_isula_image_45c151dee08c5805, []int{28} } func (m *Mount) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_Mount.Unmarshal(m, b) @@ -1515,7 +1515,7 @@ func (m *NamespaceOption) Reset() { *m = NamespaceOption{} } func (m *NamespaceOption) String() string { return proto.CompactTextString(m) } func (*NamespaceOption) ProtoMessage() {} func (*NamespaceOption) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_9d49025646188a13, []int{29} + return fileDescriptor_isula_image_45c151dee08c5805, []int{29} } func (m *NamespaceOption) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_NamespaceOption.Unmarshal(m, b) @@ -1569,7 +1569,7 @@ func (m *Int64Value) Reset() { *m = Int64Value{} } func (m *Int64Value) String() string { return proto.CompactTextString(m) } func (*Int64Value) ProtoMessage() {} func (*Int64Value) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_9d49025646188a13, []int{30} + return fileDescriptor_isula_image_45c151dee08c5805, []int{30} } func (m *Int64Value) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_Int64Value.Unmarshal(m, b) @@ -1611,7 +1611,7 @@ func (m *SELinuxOption) Reset() { *m = SELinuxOption{} } func (m *SELinuxOption) String() string { return proto.CompactTextString(m) } func (*SELinuxOption) ProtoMessage() {} func (*SELinuxOption) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_9d49025646188a13, []int{31} + return fileDescriptor_isula_image_45c151dee08c5805, []int{31} } func (m *SELinuxOption) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_SELinuxOption.Unmarshal(m, b) @@ -1699,7 +1699,7 @@ func (m *LinuxSandboxSecurityContext) Reset() { *m = LinuxSandboxSecurit func (m *LinuxSandboxSecurityContext) String() string { return proto.CompactTextString(m) } func (*LinuxSandboxSecurityContext) ProtoMessage() {} func (*LinuxSandboxSecurityContext) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_9d49025646188a13, []int{32} + return fileDescriptor_isula_image_45c151dee08c5805, []int{32} } func (m *LinuxSandboxSecurityContext) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_LinuxSandboxSecurityContext.Unmarshal(m, b) @@ -1788,7 +1788,7 @@ func (m *LinuxPodSandboxConfig) Reset() { *m = LinuxPodSandboxConfig{} } func (m *LinuxPodSandboxConfig) String() string { return proto.CompactTextString(m) } func (*LinuxPodSandboxConfig) ProtoMessage() {} func (*LinuxPodSandboxConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_9d49025646188a13, []int{33} + return fileDescriptor_isula_image_45c151dee08c5805, []int{33} } func (m *LinuxPodSandboxConfig) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_LinuxPodSandboxConfig.Unmarshal(m, b) @@ -1851,7 +1851,7 @@ func (m *PodSandboxMetadata) Reset() { *m = PodSandboxMetadata{} } func (m *PodSandboxMetadata) String() string { return proto.CompactTextString(m) } func (*PodSandboxMetadata) ProtoMessage() {} func (*PodSandboxMetadata) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_9d49025646188a13, []int{34} + return fileDescriptor_isula_image_45c151dee08c5805, []int{34} } func (m *PodSandboxMetadata) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_PodSandboxMetadata.Unmarshal(m, b) @@ -1959,7 +1959,7 @@ func (m *PodSandboxConfig) Reset() { *m = PodSandboxConfig{} } func (m *PodSandboxConfig) String() string { return proto.CompactTextString(m) } func (*PodSandboxConfig) ProtoMessage() {} func (*PodSandboxConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_9d49025646188a13, []int{35} + return fileDescriptor_isula_image_45c151dee08c5805, []int{35} } func (m *PodSandboxConfig) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_PodSandboxConfig.Unmarshal(m, b) @@ -2049,7 +2049,7 @@ func (m *ImageSpec) Reset() { *m = ImageSpec{} } func (m *ImageSpec) String() string { return proto.CompactTextString(m) } func (*ImageSpec) ProtoMessage() {} func (*ImageSpec) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_9d49025646188a13, []int{36} + return fileDescriptor_isula_image_45c151dee08c5805, []int{36} } func (m *ImageSpec) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_ImageSpec.Unmarshal(m, b) @@ -2088,7 +2088,7 @@ func (m *ImageFilter) Reset() { *m = ImageFilter{} } func (m *ImageFilter) String() string { return proto.CompactTextString(m) } func (*ImageFilter) ProtoMessage() {} func (*ImageFilter) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_9d49025646188a13, []int{37} + return fileDescriptor_isula_image_45c151dee08c5805, []int{37} } func (m *ImageFilter) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_ImageFilter.Unmarshal(m, b) @@ -2128,7 +2128,7 @@ func (m *ListImagesRequest) Reset() { *m = ListImagesRequest{} } func (m *ListImagesRequest) String() string { return proto.CompactTextString(m) } func (*ListImagesRequest) ProtoMessage() {} func (*ListImagesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_9d49025646188a13, []int{38} + return fileDescriptor_isula_image_45c151dee08c5805, []int{38} } func (m *ListImagesRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_ListImagesRequest.Unmarshal(m, b) @@ -2162,6 +2162,84 @@ func (m *ListImagesRequest) GetCheck() bool { return false } +type HealthCheck struct { + Test []string `protobuf:"bytes,1,rep,name=test,proto3" json:"test,omitempty"` + Interval int64 `protobuf:"varint,2,opt,name=interval,proto3" json:"interval,omitempty"` + Timeout int64 `protobuf:"varint,3,opt,name=timeout,proto3" json:"timeout,omitempty"` + StartPeriod int64 `protobuf:"varint,4,opt,name=start_period,json=startPeriod,proto3" json:"start_period,omitempty"` + Retries int32 `protobuf:"varint,5,opt,name=retries,proto3" json:"retries,omitempty"` + ExitOnUnhealthy bool `protobuf:"varint,6,opt,name=exit_on_unhealthy,json=exitOnUnhealthy,proto3" json:"exit_on_unhealthy,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *HealthCheck) Reset() { *m = HealthCheck{} } +func (m *HealthCheck) String() string { return proto.CompactTextString(m) } +func (*HealthCheck) ProtoMessage() {} +func (*HealthCheck) Descriptor() ([]byte, []int) { + return fileDescriptor_isula_image_45c151dee08c5805, []int{39} +} +func (m *HealthCheck) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_HealthCheck.Unmarshal(m, b) +} +func (m *HealthCheck) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_HealthCheck.Marshal(b, m, deterministic) +} +func (dst *HealthCheck) XXX_Merge(src proto.Message) { + xxx_messageInfo_HealthCheck.Merge(dst, src) +} +func (m *HealthCheck) XXX_Size() int { + return xxx_messageInfo_HealthCheck.Size(m) +} +func (m *HealthCheck) XXX_DiscardUnknown() { + xxx_messageInfo_HealthCheck.DiscardUnknown(m) +} + +var xxx_messageInfo_HealthCheck proto.InternalMessageInfo + +func (m *HealthCheck) GetTest() []string { + if m != nil { + return m.Test + } + return nil +} + +func (m *HealthCheck) GetInterval() int64 { + if m != nil { + return m.Interval + } + return 0 +} + +func (m *HealthCheck) GetTimeout() int64 { + if m != nil { + return m.Timeout + } + return 0 +} + +func (m *HealthCheck) GetStartPeriod() int64 { + if m != nil { + return m.StartPeriod + } + return 0 +} + +func (m *HealthCheck) GetRetries() int32 { + if m != nil { + return m.Retries + } + return 0 +} + +func (m *HealthCheck) GetExitOnUnhealthy() bool { + if m != nil { + return m.ExitOnUnhealthy + } + return false +} + // Basic information about a container image. type Image struct { // ID of the image. @@ -2184,17 +2262,19 @@ type Image struct { // Load time of image Loaded string `protobuf:"bytes,8,opt,name=loaded,proto3" json:"loaded,omitempty"` // oci image spec - Spec *ImageSpec `protobuf:"bytes,9,opt,name=spec,proto3" json:"spec,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + Spec *ImageSpec `protobuf:"bytes,9,opt,name=spec,proto3" json:"spec,omitempty"` + // Health check + Healthcheck *HealthCheck `protobuf:"bytes,10,opt,name=healthcheck,proto3" json:"healthcheck,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *Image) Reset() { *m = Image{} } func (m *Image) String() string { return proto.CompactTextString(m) } func (*Image) ProtoMessage() {} func (*Image) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_9d49025646188a13, []int{39} + return fileDescriptor_isula_image_45c151dee08c5805, []int{40} } func (m *Image) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_Image.Unmarshal(m, b) @@ -2277,6 +2357,13 @@ func (m *Image) GetSpec() *ImageSpec { return nil } +func (m *Image) GetHealthcheck() *HealthCheck { + if m != nil { + return m.Healthcheck + } + return nil +} + type ListImagesResponse struct { // List of images. Images []*Image `protobuf:"bytes,1,rep,name=images,proto3" json:"images,omitempty"` @@ -2291,7 +2378,7 @@ func (m *ListImagesResponse) Reset() { *m = ListImagesResponse{} } func (m *ListImagesResponse) String() string { return proto.CompactTextString(m) } func (*ListImagesResponse) ProtoMessage() {} func (*ListImagesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_9d49025646188a13, []int{40} + return fileDescriptor_isula_image_45c151dee08c5805, []int{41} } func (m *ListImagesResponse) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_ListImagesResponse.Unmarshal(m, b) @@ -2346,7 +2433,7 @@ func (m *ImageStatusRequest) Reset() { *m = ImageStatusRequest{} } func (m *ImageStatusRequest) String() string { return proto.CompactTextString(m) } func (*ImageStatusRequest) ProtoMessage() {} func (*ImageStatusRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_9d49025646188a13, []int{41} + return fileDescriptor_isula_image_45c151dee08c5805, []int{42} } func (m *ImageStatusRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_ImageStatusRequest.Unmarshal(m, b) @@ -2399,7 +2486,7 @@ func (m *ImageStatusResponse) Reset() { *m = ImageStatusResponse{} } func (m *ImageStatusResponse) String() string { return proto.CompactTextString(m) } func (*ImageStatusResponse) ProtoMessage() {} func (*ImageStatusResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_9d49025646188a13, []int{42} + return fileDescriptor_isula_image_45c151dee08c5805, []int{43} } func (m *ImageStatusResponse) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_ImageStatusResponse.Unmarshal(m, b) @@ -2458,7 +2545,7 @@ func (m *ImageInfoRequest) Reset() { *m = ImageInfoRequest{} } func (m *ImageInfoRequest) String() string { return proto.CompactTextString(m) } func (*ImageInfoRequest) ProtoMessage() {} func (*ImageInfoRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_9d49025646188a13, []int{43} + return fileDescriptor_isula_image_45c151dee08c5805, []int{44} } func (m *ImageInfoRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_ImageInfoRequest.Unmarshal(m, b) @@ -2498,7 +2585,7 @@ func (m *ImageInfoResponse) Reset() { *m = ImageInfoResponse{} } func (m *ImageInfoResponse) String() string { return proto.CompactTextString(m) } func (*ImageInfoResponse) ProtoMessage() {} func (*ImageInfoResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_9d49025646188a13, []int{44} + return fileDescriptor_isula_image_45c151dee08c5805, []int{45} } func (m *ImageInfoResponse) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_ImageInfoResponse.Unmarshal(m, b) @@ -2559,7 +2646,7 @@ func (m *AuthConfig) Reset() { *m = AuthConfig{} } func (m *AuthConfig) String() string { return proto.CompactTextString(m) } func (*AuthConfig) ProtoMessage() {} func (*AuthConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_9d49025646188a13, []int{45} + return fileDescriptor_isula_image_45c151dee08c5805, []int{46} } func (m *AuthConfig) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_AuthConfig.Unmarshal(m, b) @@ -2637,7 +2724,7 @@ func (m *PullImageRequest) Reset() { *m = PullImageRequest{} } func (m *PullImageRequest) String() string { return proto.CompactTextString(m) } func (*PullImageRequest) ProtoMessage() {} func (*PullImageRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_9d49025646188a13, []int{46} + return fileDescriptor_isula_image_45c151dee08c5805, []int{47} } func (m *PullImageRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_PullImageRequest.Unmarshal(m, b) @@ -2693,7 +2780,7 @@ func (m *PullImageResponse) Reset() { *m = PullImageResponse{} } func (m *PullImageResponse) String() string { return proto.CompactTextString(m) } func (*PullImageResponse) ProtoMessage() {} func (*PullImageResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_9d49025646188a13, []int{47} + return fileDescriptor_isula_image_45c151dee08c5805, []int{48} } func (m *PullImageResponse) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_PullImageResponse.Unmarshal(m, b) @@ -2747,7 +2834,7 @@ func (m *RemoveImageRequest) Reset() { *m = RemoveImageRequest{} } func (m *RemoveImageRequest) String() string { return proto.CompactTextString(m) } func (*RemoveImageRequest) ProtoMessage() {} func (*RemoveImageRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_9d49025646188a13, []int{48} + return fileDescriptor_isula_image_45c151dee08c5805, []int{49} } func (m *RemoveImageRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_RemoveImageRequest.Unmarshal(m, b) @@ -2793,7 +2880,7 @@ func (m *RemoveImageResponse) Reset() { *m = RemoveImageResponse{} } func (m *RemoveImageResponse) String() string { return proto.CompactTextString(m) } func (*RemoveImageResponse) ProtoMessage() {} func (*RemoveImageResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_9d49025646188a13, []int{49} + return fileDescriptor_isula_image_45c151dee08c5805, []int{50} } func (m *RemoveImageResponse) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_RemoveImageResponse.Unmarshal(m, b) @@ -2837,7 +2924,7 @@ func (m *ImageFsInfoRequest) Reset() { *m = ImageFsInfoRequest{} } func (m *ImageFsInfoRequest) String() string { return proto.CompactTextString(m) } func (*ImageFsInfoRequest) ProtoMessage() {} func (*ImageFsInfoRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_9d49025646188a13, []int{50} + return fileDescriptor_isula_image_45c151dee08c5805, []int{51} } func (m *ImageFsInfoRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_ImageFsInfoRequest.Unmarshal(m, b) @@ -2870,7 +2957,7 @@ func (m *UInt64Value) Reset() { *m = UInt64Value{} } func (m *UInt64Value) String() string { return proto.CompactTextString(m) } func (*UInt64Value) ProtoMessage() {} func (*UInt64Value) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_9d49025646188a13, []int{51} + return fileDescriptor_isula_image_45c151dee08c5805, []int{52} } func (m *UInt64Value) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_UInt64Value.Unmarshal(m, b) @@ -2910,7 +2997,7 @@ func (m *StorageIdentifier) Reset() { *m = StorageIdentifier{} } func (m *StorageIdentifier) String() string { return proto.CompactTextString(m) } func (*StorageIdentifier) ProtoMessage() {} func (*StorageIdentifier) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_9d49025646188a13, []int{52} + return fileDescriptor_isula_image_45c151dee08c5805, []int{53} } func (m *StorageIdentifier) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_StorageIdentifier.Unmarshal(m, b) @@ -2960,7 +3047,7 @@ func (m *FilesystemUsage) Reset() { *m = FilesystemUsage{} } func (m *FilesystemUsage) String() string { return proto.CompactTextString(m) } func (*FilesystemUsage) ProtoMessage() {} func (*FilesystemUsage) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_9d49025646188a13, []int{53} + return fileDescriptor_isula_image_45c151dee08c5805, []int{54} } func (m *FilesystemUsage) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_FilesystemUsage.Unmarshal(m, b) @@ -3022,7 +3109,7 @@ func (m *ImageFsInfoResponse) Reset() { *m = ImageFsInfoResponse{} } func (m *ImageFsInfoResponse) String() string { return proto.CompactTextString(m) } func (*ImageFsInfoResponse) ProtoMessage() {} func (*ImageFsInfoResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_9d49025646188a13, []int{54} + return fileDescriptor_isula_image_45c151dee08c5805, []int{55} } func (m *ImageFsInfoResponse) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_ImageFsInfoResponse.Unmarshal(m, b) @@ -3108,6 +3195,7 @@ func init() { proto.RegisterType((*ImageSpec)(nil), "isula.ImageSpec") proto.RegisterType((*ImageFilter)(nil), "isula.ImageFilter") proto.RegisterType((*ListImagesRequest)(nil), "isula.ListImagesRequest") + proto.RegisterType((*HealthCheck)(nil), "isula.HealthCheck") proto.RegisterType((*Image)(nil), "isula.Image") proto.RegisterType((*ListImagesResponse)(nil), "isula.ListImagesResponse") proto.RegisterType((*ImageStatusRequest)(nil), "isula.ImageStatusRequest") @@ -3844,169 +3932,176 @@ var _ImageService_serviceDesc = grpc.ServiceDesc{ } func init() { - proto.RegisterFile("isula/isula_image.proto", fileDescriptor_isula_image_9d49025646188a13) -} - -var fileDescriptor_isula_image_9d49025646188a13 = []byte{ - // 2554 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x19, 0x4d, 0x6f, 0x1b, 0xc7, - 0x55, 0x24, 0x45, 0x89, 0x7c, 0x14, 0x25, 0x6a, 0xa4, 0x58, 0x14, 0x6d, 0x25, 0xf2, 0x3a, 0xa9, - 0xd5, 0x14, 0x55, 0x12, 0x26, 0xae, 0x1d, 0x07, 0x0e, 0xa2, 0xc8, 0xb2, 0xc3, 0x42, 0x1f, 0xc4, - 0x4a, 0x32, 0x0c, 0x04, 0x08, 0xb1, 0xda, 0x1d, 0x52, 0x5b, 0x93, 0x3b, 0xdb, 0x9d, 0x59, 0xc5, - 0xea, 0xa9, 0x08, 0xda, 0x5b, 0xef, 0x3d, 0xf7, 0x5e, 0xa0, 0x3f, 0xa4, 0x68, 0xd1, 0x43, 0x7f, - 0x42, 0x7f, 0x48, 0x31, 0x9f, 0x9c, 0xe5, 0x87, 0x45, 0xe5, 0xb2, 0xd8, 0xf7, 0x66, 0xde, 0x9b, - 0xf7, 0x3d, 0x6f, 0x66, 0x60, 0x23, 0xa4, 0x69, 0xdf, 0xfb, 0x44, 0x7c, 0x3b, 0xe1, 0xc0, 0xeb, - 0xe1, 0xdd, 0x38, 0x21, 0x8c, 0xa0, 0xa2, 0x40, 0x39, 0xeb, 0x80, 0xbe, 0xc3, 0x5e, 0x9f, 0x5d, - 0xee, 0x5f, 0x62, 0xff, 0x8d, 0x8b, 0x7f, 0x9f, 0x62, 0xca, 0x9c, 0x67, 0xb0, 0x96, 0xc1, 0xd2, - 0x98, 0x44, 0x14, 0xa3, 0x3b, 0xb0, 0x80, 0x93, 0x64, 0x40, 0x7b, 0xf5, 0xdc, 0x76, 0x6e, 0xa7, - 0xec, 0x2a, 0x08, 0x2d, 0x43, 0xde, 0xf7, 0xeb, 0xf9, 0xed, 0xdc, 0x4e, 0xd5, 0xcd, 0xfb, 0xbe, - 0xf3, 0x03, 0x2c, 0x1d, 0x92, 0x5e, 0x18, 0x29, 0x76, 0x9c, 0x8e, 0xe2, 0xe4, 0x0a, 0x27, 0x9a, - 0x4e, 0x42, 0xa8, 0x01, 0xa5, 0x94, 0xe2, 0x24, 0xf2, 0x06, 0x58, 0x50, 0x97, 0x5d, 0x03, 0xf3, - 0xb1, 0xd8, 0xa3, 0xf4, 0x47, 0x92, 0x04, 0xf5, 0x82, 0x1c, 0xd3, 0xb0, 0xf3, 0x18, 0xaa, 0x8a, - 0xff, 0x2d, 0x05, 0x7b, 0x28, 0x08, 0x49, 0xca, 0x6e, 0x90, 0xcc, 0x79, 0x02, 0xcb, 0x7a, 0xe2, - 0x2d, 0x97, 0xf8, 0x73, 0x0e, 0xee, 0xec, 0x93, 0x88, 0x79, 0x61, 0x84, 0x93, 0x83, 0xb7, 0x31, - 0x49, 0xcc, 0x62, 0x1b, 0xb0, 0xc8, 0x55, 0xeb, 0x84, 0x81, 0xe6, 0xc1, 0xc1, 0x56, 0xc0, 0x79, - 0x93, 0x94, 0xc5, 0x29, 0x53, 0x56, 0x50, 0x10, 0xaa, 0x41, 0x21, 0x0d, 0xa5, 0xfa, 0x55, 0x97, - 0xff, 0x72, 0x4c, 0x2f, 0x0c, 0xea, 0xf3, 0x12, 0xd3, 0x0b, 0x25, 0x6d, 0xb7, 0x4b, 0x31, 0xab, - 0x17, 0x05, 0x52, 0x41, 0xce, 0x1e, 0x6c, 0x8c, 0x89, 0x71, 0x4b, 0x55, 0x9e, 0x40, 0xed, 0x90, - 0x78, 0x41, 0x8b, 0x47, 0x8d, 0xd6, 0x01, 0xc1, 0x7c, 0x37, 0xec, 0x63, 0x45, 0x29, 0xfe, 0xb9, - 0x50, 0xcc, 0xeb, 0x29, 0xd9, 0xf9, 0xaf, 0x73, 0x06, 0xc8, 0xa2, 0xe4, 0xcb, 0x12, 0xb9, 0x2e, - 0x49, 0x99, 0xb5, 0xae, 0x84, 0x2c, 0x79, 0xf2, 0x13, 0xe4, 0x29, 0x18, 0x79, 0x1a, 0x50, 0x7f, - 0x99, 0x78, 0xf1, 0x65, 0x90, 0x84, 0x57, 0x38, 0x39, 0x65, 0x1e, 0x4b, 0xa9, 0x8e, 0xd8, 0xef, - 0x61, 0x73, 0xc2, 0xd8, 0x50, 0x61, 0x2a, 0x30, 0xc6, 0xcb, 0x02, 0x9a, 0x79, 0xe1, 0x47, 0xd0, - 0xb0, 0x98, 0x1f, 0x61, 0xe6, 0x05, 0x1e, 0xf3, 0x6e, 0x72, 0xab, 0xf3, 0xbf, 0x1c, 0xdc, 0x9d, - 0x48, 0xa7, 0xc4, 0x3a, 0x84, 0xd2, 0x40, 0xe1, 0xea, 0xb9, 0xed, 0xc2, 0x4e, 0xa5, 0xf9, 0xe9, - 0xae, 0xc8, 0xca, 0xdd, 0x77, 0x50, 0xed, 0x6a, 0xc4, 0x41, 0xc4, 0x92, 0x6b, 0xd7, 0x70, 0xe0, - 0x9e, 0xb1, 0x12, 0x49, 0xfc, 0x5b, 0x0a, 0x16, 0x26, 0x28, 0x38, 0xaf, 0x15, 0x6c, 0x7c, 0x05, - 0xd5, 0x0c, 0x5b, 0xee, 0xd2, 0x37, 0xf8, 0x5a, 0xe9, 0xc3, 0x7f, 0xd1, 0x3a, 0x14, 0xaf, 0xbc, - 0x7e, 0xaa, 0xf9, 0x4b, 0xe0, 0x69, 0xfe, 0x49, 0xce, 0x69, 0x5a, 0x91, 0xf6, 0x82, 0x9e, 0x53, - 0x2b, 0x5a, 0xa6, 0x9a, 0xe6, 0x35, 0xd4, 0xc7, 0x69, 0x94, 0x59, 0xd6, 0xa1, 0x98, 0x72, 0x84, - 0x22, 0x91, 0xc0, 0xcc, 0xbe, 0x7a, 0x69, 0xa5, 0xdf, 0xf9, 0x80, 0xa4, 0xd1, 0xcd, 0xe9, 0xb7, - 0x0e, 0xc5, 0x2e, 0x49, 0x7c, 0xa9, 0x5a, 0xc9, 0x95, 0x40, 0x26, 0x81, 0x34, 0xa3, 0x5b, 0x26, - 0xd0, 0xa7, 0xf0, 0x9e, 0x61, 0x71, 0x34, 0x8b, 0x28, 0xce, 0x37, 0x96, 0xf4, 0x47, 0x3f, 0x6b, - 0xcd, 0xcf, 0x2c, 0x0e, 0x2e, 0x1e, 0x90, 0xab, 0x9b, 0x9d, 0x61, 0x6b, 0xaa, 0x49, 0x6e, 0xb9, - 0xea, 0x95, 0xc5, 0xa2, 0x9d, 0xe0, 0xd8, 0x4b, 0xcc, 0xb2, 0xeb, 0x50, 0x14, 0xfb, 0x8e, 0x76, - 0xa7, 0x00, 0x38, 0x83, 0x30, 0x50, 0xae, 0xcc, 0x87, 0x81, 0x89, 0xde, 0x82, 0x15, 0xbd, 0xf7, - 0x61, 0x89, 0x32, 0x92, 0x78, 0x3d, 0xdc, 0x21, 0x31, 0xa3, 0xf5, 0xf9, 0xed, 0xc2, 0x4e, 0xd9, - 0xad, 0x28, 0xdc, 0x49, 0xcc, 0xa8, 0xf3, 0x53, 0xce, 0x0a, 0x24, 0xb3, 0xb0, 0x12, 0xfe, 0x03, - 0xa8, 0x08, 0xbf, 0x75, 0x62, 0x12, 0x46, 0x4c, 0xad, 0x0f, 0x02, 0xd5, 0xe6, 0x18, 0xb4, 0x05, - 0x20, 0xa4, 0xe9, 0xf8, 0x24, 0xea, 0x2a, 0x61, 0xca, 0x02, 0xb3, 0x4f, 0xa2, 0xee, 0xac, 0xd9, - 0xe3, 0x6c, 0xc0, 0x7b, 0x87, 0x21, 0x65, 0x46, 0x0e, 0x53, 0x94, 0xfe, 0x9d, 0x83, 0x3b, 0xa3, - 0x23, 0x4a, 0xb6, 0x23, 0x00, 0xdf, 0x60, 0x55, 0xf6, 0xff, 0x5a, 0x65, 0xff, 0x64, 0x92, 0xdd, - 0x21, 0x4a, 0xa6, 0xbe, 0xc5, 0x60, 0xd6, 0xec, 0x68, 0x3c, 0x83, 0x95, 0x11, 0x36, 0x37, 0xa5, - 0x7a, 0xc9, 0x4e, 0xf5, 0xef, 0xa1, 0xfc, 0xfc, 0xf8, 0x94, 0x1b, 0x27, 0xec, 0xa1, 0x3a, 0x2c, - 0xca, 0xdd, 0x52, 0xca, 0x5f, 0x76, 0x35, 0xc8, 0xf7, 0x6e, 0x8a, 0xbd, 0xc4, 0xbf, 0xc4, 0xb4, - 0x9e, 0x17, 0x43, 0x06, 0xe6, 0x54, 0x24, 0x66, 0x21, 0x89, 0x68, 0xbd, 0x20, 0xa9, 0x14, 0xe8, - 0xfc, 0x35, 0x07, 0x95, 0x36, 0x49, 0xd8, 0x91, 0x17, 0xc7, 0x61, 0xd4, 0x43, 0xbf, 0x82, 0x92, - 0x68, 0x55, 0x7c, 0xd2, 0x17, 0xd2, 0x2d, 0x37, 0x57, 0x94, 0x81, 0xda, 0x0a, 0xed, 0x9a, 0x09, - 0xe8, 0x23, 0x58, 0x36, 0xe6, 0xe8, 0xf0, 0xdd, 0x4e, 0x08, 0x5f, 0x74, 0xab, 0x06, 0xcb, 0x59, - 0xa3, 0xbb, 0x50, 0xbe, 0x24, 0x94, 0xc9, 0x19, 0x05, 0x31, 0xa3, 0xc4, 0x11, 0x62, 0x70, 0x03, - 0x16, 0xc5, 0x60, 0x18, 0x0b, 0xe7, 0x96, 0xdd, 0x05, 0x0e, 0xb6, 0x62, 0xe7, 0x9f, 0x39, 0x28, - 0x8a, 0x6c, 0x1c, 0x59, 0xc6, 0x63, 0x97, 0xca, 0x6e, 0xd6, 0x32, 0x1e, 0xbb, 0x1c, 0x2e, 0xc3, - 0x67, 0xa8, 0xce, 0x46, 0x2c, 0xc3, 0x07, 0x1b, 0x50, 0x4a, 0xb0, 0x17, 0x90, 0xa8, 0x7f, 0x2d, - 0x44, 0x28, 0xb9, 0x06, 0x46, 0x0f, 0x61, 0x85, 0xe2, 0x7e, 0x18, 0xa5, 0x6f, 0x3b, 0x09, 0xee, - 0x7b, 0x17, 0xb8, 0x2f, 0x44, 0x29, 0xb9, 0xcb, 0x0a, 0xed, 0x4a, 0x2c, 0xfa, 0x12, 0x2a, 0x71, - 0x42, 0x62, 0xaf, 0xe7, 0x71, 0xe3, 0x89, 0xbd, 0x7f, 0xb9, 0xb9, 0xa1, 0xec, 0x23, 0x64, 0x6d, - 0x0f, 0x87, 0x5d, 0x7b, 0xae, 0xf3, 0x3b, 0x58, 0x39, 0xf6, 0x06, 0x98, 0xc6, 0x9e, 0xcf, 0x93, - 0x28, 0x24, 0x11, 0xcf, 0x34, 0x21, 0x6f, 0x84, 0xd9, 0x8f, 0x24, 0x79, 0x23, 0x94, 0x2a, 0xb9, - 0x15, 0x8e, 0x3b, 0x96, 0x28, 0xb4, 0x09, 0x25, 0xa9, 0x92, 0x4a, 0xdb, 0x92, 0x2b, 0x8c, 0xd5, - 0x0e, 0x03, 0x33, 0x14, 0xc6, 0xbe, 0x52, 0x68, 0x51, 0x1a, 0xce, 0x77, 0x1c, 0x80, 0x56, 0xc4, - 0x7e, 0xf3, 0xc5, 0x2b, 0x1e, 0x42, 0xc3, 0xc0, 0xe2, 0xfc, 0x0b, 0x2a, 0xb0, 0x1c, 0x0f, 0xaa, - 0xa7, 0x07, 0x87, 0x5c, 0x39, 0x25, 0x0d, 0x82, 0x79, 0xde, 0x06, 0xea, 0x1e, 0x83, 0xff, 0x73, - 0x5c, 0x42, 0xfa, 0x66, 0x77, 0xe3, 0xff, 0x1c, 0xc7, 0xae, 0x63, 0x53, 0x33, 0xf8, 0x3f, 0x5f, - 0xa2, 0x8f, 0xaf, 0x94, 0xd9, 0xca, 0xae, 0x04, 0x9c, 0x3f, 0x16, 0xe0, 0xae, 0x58, 0xe1, 0xd4, - 0x8b, 0x82, 0x0b, 0xf2, 0xf6, 0x14, 0xfb, 0x69, 0x12, 0xb2, 0x6b, 0x9e, 0x0b, 0xf8, 0x2d, 0x43, - 0xfb, 0xb0, 0x1a, 0x69, 0x93, 0x74, 0x74, 0x78, 0xf2, 0xe5, 0x2b, 0xcd, 0x3b, 0xca, 0xa6, 0x23, - 0x26, 0x73, 0x6b, 0x51, 0x16, 0x41, 0xd1, 0xb3, 0xa1, 0xef, 0x34, 0x8b, 0xbc, 0x60, 0xb1, 0xae, - 0x58, 0x64, 0xb4, 0x34, 0x1e, 0xd5, 0xe4, 0x9f, 0x41, 0x25, 0x49, 0xa3, 0x8e, 0x47, 0x3b, 0x42, - 0xf9, 0x82, 0x20, 0x5d, 0x55, 0xa4, 0x43, 0x23, 0xba, 0xe5, 0x24, 0x8d, 0xf6, 0xe8, 0x39, 0x37, - 0xca, 0x43, 0x58, 0xd1, 0x91, 0xd3, 0x49, 0x08, 0x61, 0x5d, 0xaa, 0xa3, 0x45, 0xa3, 0x5d, 0x81, - 0x45, 0x9f, 0xc0, 0x1a, 0x4d, 0xe3, 0xb8, 0x8f, 0x07, 0x38, 0x62, 0x5e, 0xbf, 0xd3, 0x4b, 0x48, - 0x1a, 0xd3, 0x7a, 0x71, 0xbb, 0xb0, 0x53, 0x70, 0x91, 0x3d, 0xf4, 0x52, 0x8c, 0xa0, 0xf7, 0x01, - 0xe2, 0x24, 0xbc, 0x0a, 0xfb, 0xb8, 0x87, 0x83, 0xfa, 0x82, 0x60, 0x6a, 0x61, 0xd0, 0xa7, 0xb0, - 0x4e, 0xb1, 0xef, 0x93, 0x41, 0xdc, 0x89, 0x13, 0xc2, 0xbb, 0x40, 0x19, 0xeb, 0x8b, 0xc2, 0xea, - 0x48, 0x8d, 0xb5, 0xe5, 0x10, 0x8f, 0x7a, 0xe7, 0x2f, 0x79, 0x5e, 0x25, 0xa3, 0xf4, 0x6d, 0x9b, - 0x04, 0xca, 0x0b, 0xaa, 0x8e, 0x3c, 0x80, 0xaa, 0x2f, 0x04, 0xea, 0xf0, 0xea, 0x6d, 0x0a, 0xf5, - 0x92, 0x44, 0xb6, 0x05, 0x0e, 0x1d, 0x41, 0x8d, 0x2a, 0xa7, 0xf1, 0x6a, 0xcd, 0xbd, 0xa6, 0xac, - 0xeb, 0x98, 0xaa, 0x39, 0xd5, 0xbf, 0xee, 0x0a, 0x1d, 0x73, 0xf8, 0x22, 0xbd, 0xa6, 0x3e, 0xeb, - 0xcb, 0x2a, 0x54, 0x69, 0xfe, 0xd2, 0xe6, 0x32, 0x2a, 0xe2, 0xee, 0xa9, 0x9c, 0x2b, 0xeb, 0xae, - 0xa6, 0x6c, 0x3c, 0x85, 0x25, 0x7b, 0xe0, 0x56, 0x4d, 0x53, 0x02, 0x68, 0xb8, 0xca, 0xd1, 0x68, - 0x0f, 0x97, 0xb3, 0x76, 0x41, 0x75, 0x08, 0x50, 0xdd, 0x35, 0x3f, 0x04, 0xdc, 0x83, 0xb2, 0x09, - 0x3e, 0x15, 0xfc, 0x43, 0x04, 0x2f, 0xb0, 0x1e, 0x63, 0x78, 0x10, 0x33, 0xb5, 0x45, 0x69, 0xd0, - 0xf9, 0xfb, 0x3c, 0xd4, 0xc6, 0xac, 0xff, 0x28, 0xd3, 0x84, 0x72, 0x83, 0x6e, 0xea, 0x2a, 0x3b, - 0x26, 0x9f, 0xd5, 0x6d, 0x36, 0x64, 0xce, 0xdb, 0x47, 0x37, 0x0d, 0x73, 0x87, 0xf6, 0x49, 0xaf, - 0x13, 0x84, 0x09, 0xf6, 0x19, 0x49, 0xae, 0x95, 0x8c, 0x4b, 0x7d, 0xd2, 0x7b, 0xae, 0x71, 0xe8, - 0x13, 0x80, 0x20, 0xa2, 0x62, 0xe7, 0x0d, 0x7b, 0x42, 0xd2, 0x4a, 0xb3, 0xa6, 0x56, 0x36, 0x7b, - 0x8c, 0x5b, 0x0e, 0x22, 0xaa, 0x04, 0x7d, 0x0c, 0x55, 0x5e, 0xb5, 0x3b, 0x03, 0xb9, 0x3d, 0xc8, - 0xe8, 0xad, 0x34, 0x91, 0x91, 0xd6, 0xec, 0x1c, 0xee, 0x52, 0x3c, 0x04, 0x28, 0xfa, 0x0a, 0x16, - 0x44, 0xcd, 0xa4, 0xf5, 0x05, 0x41, 0xf1, 0x60, 0x4c, 0x3f, 0xe5, 0xe5, 0x43, 0x31, 0x4b, 0x3a, - 0x59, 0x91, 0xa0, 0xdf, 0x42, 0xc5, 0x8b, 0x22, 0xc2, 0x3c, 0x99, 0xd0, 0x8b, 0x82, 0xc3, 0xce, - 0x34, 0x0e, 0x7b, 0xc3, 0xa9, 0x92, 0x8d, 0x4d, 0x8c, 0x9a, 0x50, 0x14, 0x19, 0x5f, 0x2f, 0x09, - 0x6d, 0xef, 0xbd, 0x2b, 0xe4, 0x5c, 0x39, 0xb5, 0xf1, 0x25, 0x54, 0x2c, 0xb1, 0x6e, 0x13, 0x62, - 0x8d, 0xaf, 0xa1, 0x36, 0x2a, 0xcf, 0xad, 0x42, 0xf4, 0x3e, 0x94, 0xc5, 0x01, 0xee, 0x34, 0xc6, - 0xfe, 0xe4, 0x2e, 0xce, 0x79, 0x04, 0x15, 0x31, 0xe5, 0x45, 0xd8, 0x67, 0x38, 0x41, 0xbf, 0xb0, - 0x27, 0x0d, 0xdd, 0x69, 0xb8, 0x68, 0xb2, 0x73, 0x58, 0xe5, 0x3d, 0x8e, 0xc0, 0xeb, 0x66, 0x09, - 0x7d, 0x0c, 0x0b, 0x5d, 0xc1, 0x46, 0x51, 0x23, 0x9b, 0x5a, 0x2e, 0xe0, 0xaa, 0x19, 0x5c, 0x1a, - 0xff, 0x12, 0xfb, 0x6f, 0x74, 0x87, 0x22, 0x00, 0xe7, 0x4f, 0x79, 0x28, 0xb6, 0xac, 0xee, 0x32, - 0x67, 0xba, 0xcb, 0xbb, 0x50, 0x4e, 0x70, 0x4c, 0x3a, 0xcc, 0xeb, 0x99, 0x8e, 0x84, 0x23, 0xce, - 0xbc, 0x1e, 0xe5, 0x9b, 0x9f, 0x18, 0x0c, 0xc2, 0x1e, 0xa6, 0x4c, 0xb7, 0x25, 0x15, 0x8e, 0x7b, - 0x2e, 0x51, 0x3c, 0x2f, 0x69, 0xf8, 0x07, 0x2c, 0xc2, 0x74, 0xde, 0x15, 0xff, 0xe8, 0x81, 0xcc, - 0xcb, 0xe2, 0xb4, 0x3a, 0x2d, 0x52, 0xd5, 0xbe, 0xe1, 0x58, 0x18, 0xb9, 0xe1, 0xa8, 0xc3, 0xa2, - 0x9f, 0x60, 0x8f, 0xe1, 0x40, 0x95, 0x4d, 0x0d, 0xf2, 0x6e, 0xae, 0x4f, 0xbc, 0x00, 0x07, 0x22, - 0x52, 0xca, 0xae, 0x82, 0xd0, 0x87, 0x30, 0x4f, 0x63, 0xec, 0xd7, 0xcb, 0x53, 0xcc, 0x2b, 0x46, - 0x9d, 0x0b, 0x40, 0xb6, 0x75, 0x55, 0xc3, 0xf9, 0x21, 0x2c, 0x08, 0xe3, 0xeb, 0x66, 0x73, 0xc9, - 0xa6, 0x76, 0xd5, 0xd8, 0xcc, 0xa7, 0xac, 0x57, 0x80, 0xe4, 0xb2, 0xf6, 0x21, 0x7c, 0x56, 0xff, - 0x73, 0xcd, 0xaf, 0x70, 0x72, 0x41, 0xa8, 0x6e, 0x31, 0x35, 0xe8, 0xfc, 0x37, 0x07, 0x6b, 0x19, - 0xc6, 0x4a, 0x7a, 0x27, 0xcb, 0x39, 0x2b, 0xbc, 0xe2, 0xfa, 0x04, 0xe6, 0xc3, 0xa8, 0x4b, 0x84, - 0x7f, 0x2b, 0xcd, 0x0f, 0x33, 0x8b, 0x67, 0xb8, 0xed, 0xb6, 0xa2, 0x2e, 0x91, 0xf9, 0x29, 0x28, - 0x66, 0x3e, 0x26, 0x3f, 0x86, 0xb2, 0x21, 0xbd, 0x55, 0x2a, 0x3d, 0x85, 0x9a, 0x90, 0x83, 0x53, - 0xdf, 0xd2, 0x58, 0xce, 0x09, 0xac, 0x5a, 0xb4, 0xca, 0x1e, 0x48, 0x45, 0x82, 0xda, 0x28, 0xf8, - 0xff, 0xcc, 0xbe, 0xfb, 0x57, 0x0e, 0x60, 0x2f, 0x65, 0x97, 0xaa, 0xae, 0xda, 0x21, 0x9a, 0x7b, - 0xc7, 0x25, 0x5c, 0x3e, 0x7b, 0x09, 0xc7, 0x45, 0xf0, 0x52, 0x76, 0xa9, 0xbb, 0x2f, 0xfe, 0xcf, - 0xdb, 0x63, 0x79, 0x06, 0xe8, 0x78, 0x41, 0x90, 0x60, 0x4a, 0x55, 0x1b, 0x56, 0x95, 0xd8, 0x3d, - 0x89, 0xe4, 0xd3, 0xc2, 0x00, 0x47, 0x8c, 0x6f, 0xe6, 0x8c, 0xbc, 0xc1, 0xb2, 0x7f, 0x2d, 0xbb, - 0x55, 0x8d, 0x3d, 0xe3, 0x48, 0x3e, 0x2d, 0xc1, 0xbd, 0x90, 0xb2, 0x44, 0x4f, 0x93, 0x29, 0x54, - 0xd5, 0x58, 0x31, 0xcd, 0xf9, 0x5b, 0x0e, 0x6a, 0xed, 0xb4, 0xdf, 0xcf, 0xdc, 0x53, 0xcd, 0x1a, - 0x8a, 0x1f, 0x29, 0x2d, 0xf2, 0x99, 0x34, 0x1e, 0x9a, 0x47, 0x29, 0xf6, 0x35, 0x2c, 0x53, 0x59, - 0x9e, 0xf5, 0x8e, 0x25, 0xfb, 0xb3, 0x8d, 0x29, 0x3b, 0x81, 0x5b, 0xa5, 0x36, 0xe8, 0xbc, 0x86, - 0x55, 0x4b, 0x44, 0xe5, 0xc4, 0xbb, 0x20, 0x0f, 0x9b, 0x9d, 0x04, 0x77, 0xb5, 0xe9, 0x43, 0x39, - 0xa3, 0x3b, 0xb3, 0x37, 0x5d, 0x40, 0xf2, 0xcc, 0xfe, 0xb3, 0xd4, 0x9f, 0x7c, 0xf5, 0xf1, 0x0c, - 0xd6, 0x32, 0x3c, 0x6f, 0x79, 0x19, 0xb0, 0xae, 0x8a, 0xc3, 0x0b, 0x6a, 0xc5, 0xbb, 0xf3, 0x00, - 0x2a, 0xe7, 0xd3, 0xce, 0x02, 0xf3, 0xfa, 0x2c, 0xf0, 0x10, 0x56, 0x4f, 0xe5, 0xf1, 0xbe, 0x25, - 0x42, 0xa1, 0x1b, 0xca, 0xde, 0x3f, 0x4d, 0x4d, 0x3d, 0x17, 0xff, 0xce, 0x7f, 0x72, 0xb0, 0xf2, - 0x22, 0xec, 0x63, 0x7a, 0x4d, 0x19, 0x1e, 0x88, 0x0b, 0x24, 0xde, 0x17, 0xb1, 0x70, 0x80, 0x29, - 0xf3, 0x06, 0xb1, 0x3a, 0x62, 0x0c, 0x11, 0xe8, 0x31, 0x80, 0xbe, 0x4d, 0x50, 0xed, 0x54, 0xa5, - 0x59, 0xd7, 0x9d, 0xf9, 0xe8, 0x9a, 0x6e, 0x99, 0x6a, 0x14, 0xfa, 0x0c, 0x20, 0xa5, 0x38, 0xe8, - 0x5c, 0x5c, 0x33, 0x4c, 0x95, 0xdf, 0xf5, 0xe6, 0x74, 0x6e, 0x37, 0xe6, 0x7c, 0xd6, 0xb7, 0x7c, - 0x12, 0xfa, 0x1c, 0x2a, 0x61, 0x44, 0x02, 0x2c, 0x7a, 0xf9, 0x40, 0x75, 0x37, 0x93, 0x68, 0x40, - 0x4e, 0x3b, 0xa7, 0x38, 0x70, 0x7e, 0xd2, 0xb5, 0x4f, 0xdb, 0x4d, 0x99, 0x7d, 0x1f, 0x56, 0x65, - 0x98, 0x74, 0x8d, 0xbe, 0xba, 0x88, 0xeb, 0xc3, 0xc9, 0x88, 0x25, 0xdc, 0x5a, 0xa8, 0x36, 0x4d, - 0x3d, 0x7f, 0xd6, 0x70, 0xfa, 0xf8, 0x1e, 0x94, 0xf4, 0xe9, 0x1a, 0x2d, 0x42, 0xe1, 0x6c, 0xbf, - 0x5d, 0x9b, 0xe3, 0x3f, 0xe7, 0xcf, 0xdb, 0xb5, 0xdc, 0xc7, 0x03, 0xa8, 0x8d, 0x9e, 0x2d, 0xd1, - 0x06, 0xac, 0xb5, 0xdd, 0x93, 0xf6, 0xde, 0xcb, 0xbd, 0xb3, 0xd6, 0xc9, 0x71, 0xa7, 0xed, 0xb6, - 0x5e, 0xed, 0x9d, 0x1d, 0xd4, 0xe6, 0xd0, 0x7d, 0xd8, 0xb2, 0x07, 0xbe, 0x3b, 0x39, 0x3d, 0xeb, - 0x9c, 0x9d, 0x74, 0xf6, 0x4f, 0x8e, 0xcf, 0xf6, 0x5a, 0xc7, 0x07, 0x6e, 0x2d, 0x87, 0xb6, 0x60, - 0xd3, 0x9e, 0xf2, 0x6d, 0xeb, 0x79, 0xcb, 0x3d, 0xd8, 0xe7, 0xff, 0x7b, 0x87, 0xb5, 0x7c, 0xf3, - 0x1f, 0x15, 0x58, 0x92, 0x21, 0x8b, 0x93, 0xab, 0xd0, 0xe7, 0xa6, 0x80, 0xe1, 0xd6, 0x86, 0xea, - 0xd6, 0x7d, 0x49, 0xa6, 0x97, 0x68, 0x6c, 0x4e, 0x18, 0x91, 0xd6, 0x74, 0xe6, 0xd0, 0x0b, 0xd5, - 0xb4, 0xc8, 0x4d, 0x01, 0x6d, 0x4e, 0xda, 0x28, 0x24, 0x9b, 0xc6, 0xf4, 0x3d, 0xc4, 0x99, 0x43, - 0xdf, 0xa8, 0xfe, 0x88, 0x3b, 0x0b, 0x6d, 0xd8, 0x53, 0xad, 0xb0, 0x6f, 0xd4, 0xc7, 0x07, 0x6c, - 0x0e, 0xa6, 0x2a, 0x18, 0x0e, 0xa3, 0xa5, 0xcc, 0x70, 0x18, 0x2b, 0x20, 0x52, 0x17, 0x2b, 0x53, - 0x8d, 0x2e, 0xe3, 0x15, 0xc1, 0xe8, 0x32, 0x21, 0xb1, 0x2d, 0x9b, 0xc8, 0xd0, 0xcb, 0xda, 0x24, - 0x93, 0xc6, 0x59, 0x9b, 0x64, 0x23, 0xd5, 0x99, 0x43, 0x7b, 0x50, 0x36, 0x17, 0xff, 0x46, 0xa3, - 0xd1, 0x47, 0x84, 0xa1, 0x7b, 0xc6, 0xde, 0x08, 0x9c, 0x39, 0x74, 0x02, 0xcb, 0xd9, 0x0b, 0x30, - 0x74, 0x6f, 0xca, 0xbd, 0x98, 0x64, 0xb6, 0xf5, 0xce, 0x5b, 0x33, 0x67, 0x0e, 0x9d, 0x43, 0x6d, - 0xf4, 0x8a, 0x10, 0xbd, 0xaf, 0x88, 0xa6, 0x5c, 0x5a, 0x36, 0x3e, 0x98, 0x3a, 0x6e, 0xd8, 0xba, - 0xd6, 0x55, 0x9a, 0x34, 0x2a, 0xda, 0x1a, 0xa5, 0xca, 0x5c, 0xc0, 0x36, 0xde, 0x9f, 0x36, 0x6c, - 0x78, 0x9e, 0xc0, 0x72, 0xf6, 0xfa, 0xd7, 0xe8, 0x3e, 0xf1, 0x1e, 0xb9, 0xb1, 0x35, 0x65, 0x74, - 0xa2, 0x90, 0xf2, 0x12, 0x7b, 0x5c, 0xc8, 0xcc, 0x2d, 0xf9, 0xb8, 0x90, 0xd9, 0xbb, 0xef, 0x11, - 0x9e, 0xf2, 0x65, 0x69, 0x9c, 0x67, 0xe6, 0xe1, 0x6b, 0x9c, 0x67, 0xf6, 0x41, 0x6a, 0xc4, 0x47, - 0xea, 0x3d, 0x60, 0xdc, 0x47, 0xd9, 0xc7, 0x85, 0x71, 0x1f, 0x8d, 0x3c, 0x24, 0x38, 0x73, 0xe8, - 0x35, 0xac, 0x8e, 0xbd, 0x0a, 0xa1, 0x0f, 0xc6, 0x1f, 0x59, 0xb2, 0x69, 0xbf, 0x3d, 0x7d, 0x82, - 0xe1, 0xfc, 0x03, 0xac, 0x4d, 0x78, 0xa4, 0x41, 0xf7, 0xdf, 0xf5, 0x80, 0x23, 0xb9, 0x3b, 0x37, - 0xbf, 0xf1, 0x38, 0x73, 0xe8, 0x0b, 0x28, 0x8a, 0x27, 0x4e, 0xb4, 0x66, 0x72, 0x65, 0xf8, 0xa0, - 0xda, 0x58, 0xcf, 0x22, 0x0d, 0xd5, 0x63, 0x58, 0x90, 0xcf, 0x96, 0xc8, 0x9a, 0x31, 0x7c, 0xee, - 0x6c, 0xbc, 0x37, 0x82, 0xb5, 0xf3, 0xdf, 0x7a, 0xf0, 0x35, 0xf9, 0x3f, 0xfe, 0x34, 0x6c, 0xf2, - 0x7f, 0xc2, 0xfb, 0xb0, 0x33, 0x77, 0xb1, 0x20, 0x2e, 0x64, 0x3f, 0xff, 0x7f, 0x00, 0x00, 0x00, - 0xff, 0xff, 0xb6, 0x68, 0x1d, 0x89, 0x77, 0x1e, 0x00, 0x00, + proto.RegisterFile("isula/isula_image.proto", fileDescriptor_isula_image_45c151dee08c5805) +} + +var fileDescriptor_isula_image_45c151dee08c5805 = []byte{ + // 2669 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x39, 0x4b, 0x6f, 0x23, 0xc7, + 0xd1, 0x22, 0x29, 0x4a, 0x64, 0x51, 0x94, 0xa8, 0x96, 0xbc, 0xa2, 0xb8, 0xbb, 0xf6, 0xee, 0xac, + 0xfd, 0xed, 0x7e, 0x1b, 0x44, 0xb6, 0x69, 0x3b, 0xbb, 0xb6, 0xb1, 0x86, 0x65, 0xed, 0xc3, 0x0c, + 0xf4, 0x20, 0x46, 0x92, 0xb1, 0x80, 0x01, 0x0f, 0x46, 0x33, 0x4d, 0x6a, 0xb2, 0xe4, 0xf4, 0xa4, + 0xbb, 0x47, 0x96, 0x72, 0x0a, 0x0c, 0xe4, 0x96, 0x7b, 0xce, 0xb9, 0x07, 0xc8, 0x3d, 0xa7, 0xdc, + 0x83, 0x04, 0x39, 0xe4, 0x27, 0xe4, 0x87, 0x04, 0xfd, 0x1a, 0xf6, 0xf0, 0xb1, 0xa2, 0x7c, 0x19, + 0x4c, 0x55, 0x77, 0x55, 0x57, 0xd7, 0xab, 0xab, 0xab, 0x61, 0x2b, 0x62, 0xe9, 0xc0, 0xff, 0x50, + 0x7e, 0xbd, 0x68, 0xe8, 0xf7, 0xf1, 0x4e, 0x42, 0x09, 0x27, 0xa8, 0x2c, 0x51, 0xce, 0x26, 0xa0, + 0x6f, 0xb1, 0x3f, 0xe0, 0xe7, 0x7b, 0xe7, 0x38, 0x78, 0xe3, 0xe2, 0xdf, 0xa6, 0x98, 0x71, 0xe7, + 0x19, 0x6c, 0xe4, 0xb0, 0x2c, 0x21, 0x31, 0xc3, 0xe8, 0x16, 0x2c, 0x61, 0x4a, 0x87, 0xac, 0xdf, + 0x2c, 0xdc, 0x2b, 0x3c, 0xaa, 0xba, 0x1a, 0x42, 0xab, 0x50, 0x0c, 0x82, 0x66, 0xf1, 0x5e, 0xe1, + 0x51, 0xdd, 0x2d, 0x06, 0x81, 0xf3, 0x03, 0xac, 0xec, 0x93, 0x7e, 0x14, 0x6b, 0x76, 0x82, 0x8e, + 0x61, 0x7a, 0x81, 0xa9, 0xa1, 0x53, 0x10, 0x6a, 0x41, 0x25, 0x65, 0x98, 0xc6, 0xfe, 0x10, 0x4b, + 0xea, 0xaa, 0x9b, 0xc1, 0x62, 0x2c, 0xf1, 0x19, 0xfb, 0x91, 0xd0, 0xb0, 0x59, 0x52, 0x63, 0x06, + 0x76, 0x9e, 0x40, 0x5d, 0xf3, 0xbf, 0xa1, 0x60, 0x0f, 0x25, 0x21, 0x49, 0xf9, 0x35, 0x92, 0x39, + 0x4f, 0x61, 0xd5, 0x4c, 0xbc, 0xe1, 0x12, 0x7f, 0x28, 0xc0, 0xad, 0x3d, 0x12, 0x73, 0x3f, 0x8a, + 0x31, 0x7d, 0x71, 0x99, 0x10, 0x9a, 0x2d, 0xb6, 0x05, 0xcb, 0x62, 0x6b, 0x5e, 0x14, 0x1a, 0x1e, + 0x02, 0xec, 0x84, 0x82, 0x37, 0x49, 0x79, 0x92, 0x72, 0xad, 0x05, 0x0d, 0xa1, 0x06, 0x94, 0xd2, + 0x48, 0x6d, 0xbf, 0xee, 0x8a, 0x5f, 0x81, 0xe9, 0x47, 0x61, 0x73, 0x51, 0x61, 0xfa, 0x91, 0xa2, + 0xed, 0xf5, 0x18, 0xe6, 0xcd, 0xb2, 0x44, 0x6a, 0xc8, 0xd9, 0x85, 0xad, 0x09, 0x31, 0x6e, 0xb8, + 0x95, 0xa7, 0xd0, 0xd8, 0x27, 0x7e, 0xd8, 0x11, 0x5e, 0x63, 0xf6, 0x80, 0x60, 0xb1, 0x17, 0x0d, + 0xb0, 0xa6, 0x94, 0xff, 0x42, 0x28, 0xee, 0xf7, 0xb5, 0xec, 0xe2, 0xd7, 0x39, 0x01, 0x64, 0x51, + 0x8a, 0x65, 0x89, 0x5a, 0x97, 0xa4, 0xdc, 0x5a, 0x57, 0x41, 0x96, 0x3c, 0xc5, 0x29, 0xf2, 0x94, + 0x32, 0x79, 0x5a, 0xd0, 0x7c, 0x45, 0xfd, 0xe4, 0x3c, 0xa4, 0xd1, 0x05, 0xa6, 0xc7, 0xdc, 0xe7, + 0x29, 0x33, 0x1e, 0xfb, 0x3d, 0x6c, 0x4f, 0x19, 0x1b, 0x6d, 0x98, 0x49, 0x4c, 0x66, 0x65, 0x09, + 0xcd, 0xbd, 0xf0, 0x67, 0xd0, 0xb2, 0x98, 0x1f, 0x60, 0xee, 0x87, 0x3e, 0xf7, 0xaf, 0x33, 0xab, + 0xf3, 0xdf, 0x02, 0xdc, 0x9e, 0x4a, 0xa7, 0xc5, 0xda, 0x87, 0xca, 0x50, 0xe3, 0x9a, 0x85, 0x7b, + 0xa5, 0x47, 0xb5, 0xf6, 0x47, 0x3b, 0x32, 0x2a, 0x77, 0xde, 0x42, 0xb5, 0x63, 0x10, 0x2f, 0x62, + 0x4e, 0xaf, 0xdc, 0x8c, 0x83, 0xb0, 0x8c, 0x15, 0x48, 0xf2, 0xdf, 0xda, 0x60, 0x69, 0xca, 0x06, + 0x17, 0xcd, 0x06, 0x5b, 0x5f, 0x42, 0x3d, 0xc7, 0x56, 0x98, 0xf4, 0x0d, 0xbe, 0xd2, 0xfb, 0x11, + 0xbf, 0x68, 0x13, 0xca, 0x17, 0xfe, 0x20, 0x35, 0xfc, 0x15, 0xf0, 0x45, 0xf1, 0x69, 0xc1, 0x69, + 0x5b, 0x9e, 0xf6, 0x92, 0x9d, 0x32, 0xcb, 0x5b, 0x66, 0xaa, 0xe6, 0x35, 0x34, 0x27, 0x69, 0xb4, + 0x5a, 0x36, 0xa1, 0x9c, 0x0a, 0x84, 0x26, 0x51, 0xc0, 0xdc, 0xb6, 0x7a, 0x65, 0x85, 0xdf, 0xe9, + 0x90, 0xa4, 0xf1, 0xf5, 0xe1, 0xb7, 0x09, 0xe5, 0x1e, 0xa1, 0x81, 0xda, 0x5a, 0xc5, 0x55, 0x40, + 0x2e, 0x80, 0x0c, 0xa3, 0x1b, 0x06, 0xd0, 0x47, 0xf0, 0x4e, 0xc6, 0xe2, 0x60, 0x1e, 0x51, 0x9c, + 0xaf, 0x2d, 0xe9, 0x0f, 0x7e, 0xd6, 0x9a, 0x1f, 0x5b, 0x1c, 0x5c, 0x3c, 0x24, 0x17, 0xd7, 0x1b, + 0xc3, 0xde, 0xa9, 0x21, 0xb9, 0xe1, 0xaa, 0x17, 0x16, 0x8b, 0x2e, 0xc5, 0x89, 0x4f, 0xb3, 0x65, + 0x37, 0xa1, 0x2c, 0xcf, 0x1d, 0x63, 0x4e, 0x09, 0x08, 0x06, 0x51, 0xa8, 0x4d, 0x59, 0x8c, 0xc2, + 0xcc, 0x7b, 0x4b, 0x96, 0xf7, 0xde, 0x87, 0x15, 0xc6, 0x09, 0xf5, 0xfb, 0xd8, 0x23, 0x09, 0x67, + 0xcd, 0xc5, 0x7b, 0xa5, 0x47, 0x55, 0xb7, 0xa6, 0x71, 0x47, 0x09, 0x67, 0xce, 0x4f, 0x05, 0xcb, + 0x91, 0xb2, 0x85, 0xb5, 0xf0, 0xef, 0x41, 0x4d, 0xda, 0xcd, 0x4b, 0x48, 0x14, 0x73, 0xbd, 0x3e, + 0x48, 0x54, 0x57, 0x60, 0xd0, 0x5d, 0x00, 0x29, 0x8d, 0x17, 0x90, 0xb8, 0xa7, 0x85, 0xa9, 0x4a, + 0xcc, 0x1e, 0x89, 0x7b, 0xf3, 0x46, 0x8f, 0xb3, 0x05, 0xef, 0xec, 0x47, 0x8c, 0x67, 0x72, 0x64, + 0x49, 0xe9, 0x5f, 0x05, 0xb8, 0x35, 0x3e, 0xa2, 0x65, 0x3b, 0x00, 0x08, 0x32, 0xac, 0x8e, 0xfe, + 0x5f, 0xea, 0xe8, 0x9f, 0x4e, 0xb2, 0x33, 0x42, 0xa9, 0xd0, 0xb7, 0x18, 0xcc, 0x1b, 0x1d, 0xad, + 0x67, 0xb0, 0x36, 0xc6, 0xe6, 0xba, 0x50, 0xaf, 0xd8, 0xa1, 0xfe, 0x3d, 0x54, 0x9f, 0x1f, 0x1e, + 0x0b, 0xe5, 0x44, 0x7d, 0xd4, 0x84, 0x65, 0x75, 0x5a, 0x2a, 0xf9, 0xab, 0xae, 0x01, 0xc5, 0xd9, + 0xcd, 0xb0, 0x4f, 0x83, 0x73, 0xcc, 0x9a, 0x45, 0x39, 0x94, 0xc1, 0x82, 0x8a, 0x24, 0x3c, 0x22, + 0x31, 0x6b, 0x96, 0x14, 0x95, 0x06, 0x9d, 0x3f, 0x15, 0xa0, 0xd6, 0x25, 0x94, 0x1f, 0xf8, 0x49, + 0x12, 0xc5, 0x7d, 0xf4, 0x0b, 0xa8, 0xc8, 0x52, 0x25, 0x20, 0x03, 0x29, 0xdd, 0x6a, 0x7b, 0x4d, + 0x2b, 0xa8, 0xab, 0xd1, 0x6e, 0x36, 0x01, 0x7d, 0x00, 0xab, 0x99, 0x3a, 0x3c, 0x71, 0xda, 0x49, + 0xe1, 0xcb, 0x6e, 0x3d, 0xc3, 0x0a, 0xd6, 0xe8, 0x36, 0x54, 0xcf, 0x09, 0xe3, 0x6a, 0x46, 0x49, + 0xce, 0xa8, 0x08, 0x84, 0x1c, 0xdc, 0x82, 0x65, 0x39, 0x18, 0x25, 0xd2, 0xb8, 0x55, 0x77, 0x49, + 0x80, 0x9d, 0xc4, 0xf9, 0x47, 0x01, 0xca, 0x32, 0x1a, 0xc7, 0x96, 0xf1, 0xf9, 0xb9, 0xd6, 0x9b, + 0xb5, 0x8c, 0xcf, 0xcf, 0x47, 0xcb, 0x88, 0x19, 0xba, 0xb2, 0x91, 0xcb, 0x88, 0xc1, 0x16, 0x54, + 0x28, 0xf6, 0x43, 0x12, 0x0f, 0xae, 0xa4, 0x08, 0x15, 0x37, 0x83, 0xd1, 0x43, 0x58, 0x63, 0x78, + 0x10, 0xc5, 0xe9, 0xa5, 0x47, 0xf1, 0xc0, 0x3f, 0xc3, 0x03, 0x29, 0x4a, 0xc5, 0x5d, 0xd5, 0x68, + 0x57, 0x61, 0xd1, 0xe7, 0x50, 0x4b, 0x28, 0x49, 0xfc, 0xbe, 0x2f, 0x94, 0x27, 0xcf, 0xfe, 0xd5, + 0xf6, 0x96, 0xd6, 0x8f, 0x94, 0xb5, 0x3b, 0x1a, 0x76, 0xed, 0xb9, 0xce, 0x6f, 0x60, 0xed, 0xd0, + 0x1f, 0x62, 0x96, 0xf8, 0x81, 0x08, 0xa2, 0x88, 0xc4, 0x22, 0xd2, 0xa4, 0xbc, 0x31, 0xe6, 0x3f, + 0x12, 0xfa, 0x46, 0x6e, 0xaa, 0xe2, 0xd6, 0x04, 0xee, 0x50, 0xa1, 0xd0, 0x36, 0x54, 0xd4, 0x96, + 0x74, 0xd8, 0x56, 0x5c, 0xa9, 0xac, 0x6e, 0x14, 0x66, 0x43, 0x51, 0x12, 0xe8, 0x0d, 0x2d, 0x2b, + 0xc5, 0x05, 0x8e, 0x03, 0xd0, 0x89, 0xf9, 0xaf, 0x3e, 0xfd, 0x4e, 0xb8, 0xd0, 0xc8, 0xb1, 0x04, + 0xff, 0x92, 0x76, 0x2c, 0xc7, 0x87, 0xfa, 0xf1, 0x8b, 0x7d, 0xb1, 0x39, 0x2d, 0x0d, 0x82, 0x45, + 0x51, 0x06, 0x9a, 0x1a, 0x43, 0xfc, 0x0b, 0x1c, 0x25, 0x83, 0xec, 0x74, 0x13, 0xff, 0x02, 0xc7, + 0xaf, 0x92, 0x2c, 0x67, 0x88, 0x7f, 0xb1, 0xc4, 0x00, 0x5f, 0x68, 0xb5, 0x55, 0x5d, 0x05, 0x38, + 0xbf, 0x2f, 0xc1, 0x6d, 0xb9, 0xc2, 0xb1, 0x1f, 0x87, 0x67, 0xe4, 0xf2, 0x18, 0x07, 0x29, 0x8d, + 0xf8, 0x95, 0x88, 0x05, 0x7c, 0xc9, 0xd1, 0x1e, 0xac, 0xc7, 0x46, 0x25, 0x9e, 0x71, 0x4f, 0xb1, + 0x7c, 0xad, 0x7d, 0x4b, 0xeb, 0x74, 0x4c, 0x65, 0x6e, 0x23, 0xce, 0x23, 0x18, 0x7a, 0x36, 0xb2, + 0x9d, 0x61, 0x51, 0x94, 0x2c, 0x36, 0x35, 0x8b, 0xdc, 0x2e, 0x33, 0x8b, 0x1a, 0xf2, 0x8f, 0xa1, + 0x46, 0xd3, 0xd8, 0xf3, 0x99, 0x27, 0x37, 0x5f, 0x92, 0xa4, 0xeb, 0x9a, 0x74, 0xa4, 0x44, 0xb7, + 0x4a, 0xd3, 0x78, 0x97, 0x9d, 0x0a, 0xa5, 0x3c, 0x84, 0x35, 0xe3, 0x39, 0x1e, 0x25, 0x84, 0xf7, + 0x98, 0xf1, 0x16, 0x83, 0x76, 0x25, 0x16, 0x7d, 0x08, 0x1b, 0x2c, 0x4d, 0x92, 0x01, 0x1e, 0xe2, + 0x98, 0xfb, 0x03, 0xaf, 0x4f, 0x49, 0x9a, 0xb0, 0x66, 0xf9, 0x5e, 0xe9, 0x51, 0xc9, 0x45, 0xf6, + 0xd0, 0x2b, 0x39, 0x82, 0xde, 0x05, 0x48, 0x68, 0x74, 0x11, 0x0d, 0x70, 0x1f, 0x87, 0xcd, 0x25, + 0xc9, 0xd4, 0xc2, 0xa0, 0x8f, 0x60, 0x93, 0xe1, 0x20, 0x20, 0xc3, 0xc4, 0x4b, 0x28, 0x11, 0x55, + 0xa0, 0xf2, 0xf5, 0x65, 0xa9, 0x75, 0xa4, 0xc7, 0xba, 0x6a, 0x48, 0x78, 0xbd, 0xf3, 0xc7, 0xa2, + 0xc8, 0x92, 0x71, 0x7a, 0xd9, 0x25, 0xa1, 0xb6, 0x82, 0xce, 0x23, 0x0f, 0xa0, 0x1e, 0x48, 0x81, + 0x3c, 0x91, 0xbd, 0xb3, 0x44, 0xbd, 0xa2, 0x90, 0x5d, 0x89, 0x43, 0x07, 0xd0, 0x60, 0xda, 0x68, + 0x22, 0x5b, 0x0b, 0xab, 0x69, 0xed, 0x3a, 0x59, 0xd6, 0x9c, 0x69, 0x5f, 0x77, 0x8d, 0x4d, 0x18, + 0x7c, 0x99, 0x5d, 0xb1, 0x80, 0x0f, 0x54, 0x16, 0xaa, 0xb5, 0xff, 0xdf, 0xe6, 0x32, 0x2e, 0xe2, + 0xce, 0xb1, 0x9a, 0xab, 0xf2, 0xae, 0xa1, 0x6c, 0x7d, 0x01, 0x2b, 0xf6, 0xc0, 0x8d, 0x8a, 0x26, + 0x0a, 0x68, 0xb4, 0xca, 0xc1, 0x78, 0x0d, 0x57, 0xb0, 0x4e, 0x41, 0x7d, 0x09, 0xd0, 0xd5, 0xb5, + 0xb8, 0x04, 0xdc, 0x81, 0x6a, 0xe6, 0x7c, 0xda, 0xf9, 0x47, 0x08, 0x91, 0x60, 0x7d, 0xce, 0xf1, + 0x30, 0xe1, 0xfa, 0x88, 0x32, 0xa0, 0xf3, 0x97, 0x45, 0x68, 0x4c, 0x68, 0xff, 0xb3, 0x5c, 0x11, + 0x2a, 0x14, 0xba, 0x6d, 0xb2, 0xec, 0x84, 0x7c, 0x56, 0xb5, 0xd9, 0x52, 0x31, 0x6f, 0x5f, 0xdd, + 0x0c, 0x2c, 0x0c, 0x3a, 0x20, 0x7d, 0x2f, 0x8c, 0x28, 0x0e, 0x38, 0xa1, 0x57, 0x5a, 0xc6, 0x95, + 0x01, 0xe9, 0x3f, 0x37, 0x38, 0xf4, 0x21, 0x40, 0x18, 0x33, 0x79, 0xf2, 0x46, 0x7d, 0x29, 0x69, + 0xad, 0xdd, 0xd0, 0x2b, 0x67, 0x67, 0x8c, 0x5b, 0x0d, 0x63, 0xa6, 0x05, 0x7d, 0x02, 0x75, 0x91, + 0xb5, 0xbd, 0xa1, 0x3a, 0x1e, 0x94, 0xf7, 0xd6, 0xda, 0x28, 0x93, 0x36, 0x3b, 0x39, 0xdc, 0x95, + 0x64, 0x04, 0x30, 0xf4, 0x25, 0x2c, 0xc9, 0x9c, 0xc9, 0x9a, 0x4b, 0x92, 0xe2, 0xc1, 0xc4, 0xfe, + 0xb4, 0x95, 0xf7, 0xe5, 0x2c, 0x65, 0x64, 0x4d, 0x82, 0x7e, 0x0d, 0x35, 0x3f, 0x8e, 0x09, 0xf7, + 0x55, 0x40, 0x2f, 0x4b, 0x0e, 0x8f, 0x66, 0x71, 0xd8, 0x1d, 0x4d, 0x55, 0x6c, 0x6c, 0x62, 0xd4, + 0x86, 0xb2, 0x8c, 0xf8, 0x66, 0x45, 0xee, 0xf6, 0xce, 0xdb, 0x5c, 0xce, 0x55, 0x53, 0x5b, 0x9f, + 0x43, 0xcd, 0x12, 0xeb, 0x26, 0x2e, 0xd6, 0xfa, 0x0a, 0x1a, 0xe3, 0xf2, 0xdc, 0xc8, 0x45, 0xef, + 0x43, 0x55, 0x5e, 0xe0, 0x8e, 0x13, 0x1c, 0x4c, 0xaf, 0xe2, 0x9c, 0xcf, 0xa0, 0x26, 0xa7, 0xbc, + 0x8c, 0x06, 0x1c, 0x53, 0xf4, 0x7f, 0xf6, 0xa4, 0x91, 0x39, 0x33, 0x2e, 0x86, 0xec, 0x14, 0xd6, + 0x45, 0x8d, 0x23, 0xf1, 0xa6, 0x58, 0x42, 0x8f, 0x61, 0xa9, 0x27, 0xd9, 0x68, 0x6a, 0x64, 0x53, + 0xab, 0x05, 0x5c, 0x3d, 0x43, 0x48, 0x13, 0x9c, 0xe3, 0xe0, 0x8d, 0xa9, 0x50, 0x24, 0xe0, 0xfc, + 0xbd, 0x00, 0x35, 0xab, 0x6d, 0x21, 0xcf, 0x07, 0xcc, 0xb8, 0xae, 0x4e, 0xe4, 0xbf, 0xf0, 0xdb, + 0x28, 0xe6, 0x98, 0x5e, 0xf8, 0x03, 0x49, 0x5c, 0x72, 0x33, 0x58, 0x44, 0x0e, 0x8f, 0x86, 0x98, + 0xa4, 0xaa, 0x34, 0x28, 0xb9, 0x06, 0x54, 0x95, 0xa8, 0x4f, 0xb9, 0x97, 0x60, 0x1a, 0x11, 0x75, + 0xff, 0x2e, 0x89, 0x4a, 0xd4, 0xa7, 0xbc, 0x2b, 0x51, 0x82, 0x98, 0x62, 0x4e, 0x23, 0xcc, 0xe4, + 0x61, 0x5c, 0x76, 0x0d, 0x88, 0x1e, 0xc3, 0x3a, 0xbe, 0x8c, 0xb8, 0x47, 0x62, 0x2f, 0x8d, 0xcf, + 0xa5, 0x7c, 0x57, 0x3a, 0xa5, 0xae, 0x89, 0x81, 0xa3, 0xf8, 0xd4, 0xa0, 0x9d, 0xbf, 0x15, 0xa1, + 0xdc, 0xb1, 0x0a, 0xe4, 0x42, 0x56, 0x20, 0xdf, 0x86, 0x2a, 0xc5, 0x09, 0xf1, 0xb8, 0xdf, 0xcf, + 0x8a, 0x2a, 0x81, 0x38, 0xf1, 0xfb, 0x4c, 0xc8, 0x27, 0x07, 0xc3, 0xa8, 0x8f, 0x19, 0x37, 0x95, + 0x55, 0x4d, 0xe0, 0x9e, 0x2b, 0x94, 0x50, 0x06, 0x8b, 0x7e, 0x87, 0xa5, 0xe8, 0x8b, 0xae, 0xfc, + 0x47, 0x0f, 0x54, 0x6a, 0x29, 0xcf, 0x3a, 0x6a, 0x64, 0xb6, 0xb1, 0x9b, 0x34, 0x4b, 0x63, 0x4d, + 0x9a, 0x26, 0x2c, 0x07, 0x14, 0xfb, 0x1c, 0x87, 0x3a, 0xf3, 0x1b, 0x50, 0x14, 0xa4, 0x03, 0xe2, + 0x87, 0x38, 0x94, 0xce, 0x5e, 0x75, 0x35, 0x84, 0xde, 0x87, 0x45, 0x96, 0xe0, 0xa0, 0x59, 0x9d, + 0xe1, 0x21, 0x72, 0x14, 0x7d, 0x0a, 0x35, 0xa5, 0x11, 0x65, 0x65, 0xc8, 0x39, 0x84, 0xdd, 0x99, + 0xb2, 0xa7, 0x39, 0x67, 0x80, 0x6c, 0xb7, 0xd2, 0x95, 0xf6, 0xfb, 0xb0, 0x24, 0xbd, 0xce, 0x54, + 0xd9, 0x2b, 0xf6, 0x9a, 0xae, 0x1e, 0x9b, 0xfb, 0x7a, 0xf9, 0x1d, 0x20, 0x25, 0xac, 0xdd, 0x7d, + 0x98, 0xd7, 0xf1, 0x85, 0xbe, 0x2e, 0x30, 0x3d, 0x23, 0xcc, 0xd4, 0xd6, 0x06, 0x74, 0xfe, 0x53, + 0x80, 0x8d, 0x1c, 0x63, 0x2d, 0xbd, 0x93, 0xe7, 0x9c, 0x17, 0x5e, 0x73, 0x7d, 0x0a, 0x8b, 0x51, + 0xdc, 0x23, 0xd2, 0x2b, 0x6a, 0xed, 0xf7, 0x73, 0x8b, 0xe7, 0xb8, 0xed, 0x74, 0xe2, 0x1e, 0x51, + 0x89, 0x49, 0x52, 0xcc, 0xdd, 0x1f, 0x78, 0x02, 0xd5, 0x8c, 0xf4, 0x46, 0x39, 0xe4, 0x0b, 0x68, + 0x48, 0x39, 0x04, 0xf5, 0x0d, 0x95, 0xe5, 0x1c, 0xc1, 0xba, 0x45, 0xab, 0xf5, 0x81, 0xb4, 0xff, + 0xe8, 0x13, 0x52, 0x7a, 0xcb, 0xbc, 0xb6, 0xfb, 0x67, 0x01, 0x60, 0x37, 0xe5, 0xe7, 0xfa, 0x40, + 0xb1, 0x1d, 0xbb, 0xf0, 0x96, 0xee, 0x63, 0x31, 0xdf, 0x7d, 0x14, 0x22, 0xf8, 0x29, 0x3f, 0x37, + 0x65, 0xa7, 0xf8, 0x17, 0xf7, 0x02, 0x75, 0xf9, 0xf1, 0xfc, 0x30, 0xa4, 0x98, 0x31, 0x5d, 0x7f, + 0xd6, 0x15, 0x76, 0x57, 0x21, 0xc5, 0xb4, 0x28, 0xc4, 0x31, 0x17, 0x55, 0x0c, 0x27, 0x6f, 0xb0, + 0x2a, 0xdc, 0xab, 0x6e, 0xdd, 0x60, 0x4f, 0x04, 0x52, 0x4c, 0xa3, 0xb8, 0x1f, 0x31, 0x4e, 0xcd, + 0x34, 0x15, 0x78, 0x75, 0x83, 0x95, 0xd3, 0x9c, 0x3f, 0x17, 0xa0, 0xd1, 0x4d, 0x07, 0x83, 0x5c, + 0x83, 0x6e, 0x5e, 0x57, 0xfc, 0x40, 0xef, 0xa2, 0x98, 0x0b, 0xfe, 0x91, 0x7a, 0xf4, 0xc6, 0xbe, + 0x82, 0x55, 0xa6, 0xce, 0x25, 0x73, 0x54, 0xab, 0xc2, 0x74, 0x6b, 0xc6, 0x11, 0xe8, 0xd6, 0x99, + 0x0d, 0x3a, 0xaf, 0x61, 0xdd, 0x12, 0x51, 0x1b, 0xf1, 0x36, 0xa8, 0x5b, 0xb6, 0x47, 0x71, 0xcf, + 0xa8, 0x3e, 0x52, 0x33, 0x7a, 0x73, 0x5b, 0xd3, 0x05, 0xa4, 0x9a, 0x15, 0x3f, 0x6b, 0xfb, 0xd3, + 0x7b, 0x3e, 0xcf, 0x60, 0x23, 0xc7, 0xf3, 0x86, 0x5d, 0x90, 0x4d, 0x9d, 0x1c, 0x5e, 0x32, 0xcb, + 0xdf, 0x9d, 0x07, 0x50, 0x3b, 0x9d, 0x75, 0x09, 0x5a, 0x34, 0x97, 0xa0, 0x87, 0xb0, 0x7e, 0xac, + 0xfa, 0x1a, 0x1d, 0xe9, 0x0a, 0xbd, 0x48, 0x5d, 0x7a, 0xd2, 0x34, 0x3b, 0x05, 0xe4, 0xbf, 0xf3, + 0xef, 0x02, 0xac, 0xbd, 0x8c, 0x06, 0x98, 0x5d, 0x31, 0x8e, 0x87, 0xb2, 0x73, 0x26, 0x0a, 0x42, + 0x71, 0x52, 0x31, 0xee, 0x0f, 0x13, 0x7d, 0xb7, 0x1a, 0x21, 0xd0, 0x13, 0x00, 0xd3, 0x46, 0xd1, + 0x75, 0x64, 0xad, 0xdd, 0x34, 0x57, 0x92, 0xf1, 0x35, 0xdd, 0x2a, 0x33, 0x28, 0xf4, 0x31, 0x40, + 0xca, 0x70, 0xe8, 0x9d, 0x5d, 0x71, 0xcc, 0xb4, 0xdd, 0x4d, 0x12, 0x3e, 0xb5, 0x6f, 0x24, 0x62, + 0xd6, 0x37, 0x62, 0x12, 0xfa, 0x04, 0x6a, 0x51, 0x4c, 0x42, 0x2c, 0x2f, 0x31, 0xa1, 0x2e, 0xeb, + 0xa6, 0xd1, 0x80, 0x9a, 0x76, 0xca, 0x70, 0xe8, 0xfc, 0x64, 0x72, 0x9f, 0xd1, 0x9b, 0x56, 0xfb, + 0x1e, 0xac, 0x2b, 0x37, 0xe9, 0x65, 0xfb, 0x35, 0x49, 0xdc, 0xdc, 0xca, 0xc6, 0x34, 0xe1, 0x36, + 0x22, 0x5d, 0x2d, 0x98, 0xf9, 0xf3, 0xba, 0xd3, 0xe3, 0x3b, 0x50, 0x31, 0x6d, 0x05, 0xb4, 0x0c, + 0xa5, 0x93, 0xbd, 0x6e, 0x63, 0x41, 0xfc, 0x9c, 0x3e, 0xef, 0x36, 0x0a, 0x8f, 0x87, 0xd0, 0x18, + 0xbf, 0x54, 0xa3, 0x2d, 0xd8, 0xe8, 0xba, 0x47, 0xdd, 0xdd, 0x57, 0xbb, 0x27, 0x9d, 0xa3, 0x43, + 0xaf, 0xeb, 0x76, 0xbe, 0xdb, 0x3d, 0x79, 0xd1, 0x58, 0x40, 0xf7, 0xe1, 0xae, 0x3d, 0xf0, 0xed, + 0xd1, 0xf1, 0x89, 0x77, 0x72, 0xe4, 0xed, 0x1d, 0x1d, 0x9e, 0xec, 0x76, 0x0e, 0x5f, 0xb8, 0x8d, + 0x02, 0xba, 0x0b, 0xdb, 0xf6, 0x94, 0x6f, 0x3a, 0xcf, 0x3b, 0xee, 0x8b, 0x3d, 0xf1, 0xbf, 0xbb, + 0xdf, 0x28, 0xb6, 0xff, 0x5a, 0x83, 0x15, 0xe5, 0xb2, 0x98, 0x5e, 0x44, 0x81, 0x50, 0x05, 0x8c, + 0x8e, 0x36, 0xd4, 0xb4, 0x1a, 0x45, 0xb9, 0x22, 0xaa, 0xb5, 0x3d, 0x65, 0x44, 0x69, 0xd3, 0x59, + 0x40, 0x2f, 0x75, 0xb5, 0xa6, 0x0e, 0x05, 0xb4, 0x3d, 0xed, 0xa0, 0x50, 0x6c, 0x5a, 0xb3, 0xcf, + 0x10, 0x67, 0x01, 0x7d, 0xad, 0x0b, 0x43, 0x61, 0x2c, 0xb4, 0x65, 0x4f, 0xb5, 0xdc, 0xbe, 0xd5, + 0x9c, 0x1c, 0xb0, 0x39, 0x64, 0x59, 0x21, 0xe3, 0x30, 0x9e, 0xca, 0x32, 0x0e, 0x13, 0x09, 0x44, + 0xed, 0xc5, 0x8a, 0xd4, 0x6c, 0x2f, 0x93, 0x19, 0x21, 0xdb, 0xcb, 0x94, 0xc0, 0xb6, 0x74, 0xa2, + 0x5c, 0x2f, 0xaf, 0x93, 0x5c, 0x18, 0xe7, 0x75, 0x92, 0xf7, 0x54, 0x67, 0x01, 0xed, 0x42, 0x35, + 0x7b, 0xf1, 0xc8, 0x76, 0x34, 0xfe, 0x7a, 0x32, 0x32, 0xcf, 0xc4, 0xe3, 0x88, 0xb3, 0x80, 0x8e, + 0x60, 0x35, 0xdf, 0xf9, 0x43, 0x77, 0x66, 0x34, 0x04, 0x15, 0xb3, 0xbb, 0x6f, 0x6d, 0x17, 0x3a, + 0x0b, 0xe8, 0x14, 0x1a, 0xe3, 0xbd, 0x51, 0xf4, 0xae, 0x26, 0x9a, 0xd1, 0xad, 0x6d, 0xbd, 0x37, + 0x73, 0x3c, 0x63, 0xeb, 0x5a, 0x3d, 0x44, 0xa5, 0x54, 0x74, 0x77, 0x9c, 0x2a, 0xd7, 0x79, 0x6e, + 0xbd, 0x3b, 0x6b, 0x38, 0xe3, 0x79, 0x04, 0xab, 0xf9, 0xbe, 0x77, 0xb6, 0xf7, 0xa9, 0x0d, 0xf4, + 0xd6, 0xdd, 0x19, 0xa3, 0x53, 0x85, 0x54, 0xdd, 0xfb, 0x49, 0x21, 0x73, 0xcf, 0x03, 0x93, 0x42, + 0xe6, 0x9b, 0xfe, 0x63, 0x3c, 0xd5, 0x93, 0xda, 0x24, 0xcf, 0xdc, 0x8b, 0xdf, 0x24, 0xcf, 0xfc, + 0x4b, 0xdc, 0x98, 0x8d, 0xf4, 0x43, 0xc8, 0xa4, 0x8d, 0xf2, 0xaf, 0x2a, 0x93, 0x36, 0x1a, 0x7b, + 0x41, 0x71, 0x16, 0xd0, 0x6b, 0x58, 0x9f, 0x78, 0x0e, 0x43, 0xef, 0x4d, 0xbe, 0x2e, 0xe5, 0xc3, + 0xfe, 0xde, 0xec, 0x09, 0x19, 0xe7, 0x1f, 0x60, 0x63, 0xca, 0xeb, 0x14, 0xba, 0xff, 0xb6, 0x97, + 0x2b, 0xc5, 0xdd, 0xb9, 0xfe, 0x71, 0xcb, 0x59, 0x40, 0x9f, 0x42, 0x59, 0xbe, 0xed, 0xa2, 0x8d, + 0x2c, 0x56, 0x46, 0x2f, 0xc9, 0xad, 0xcd, 0x3c, 0x32, 0xa3, 0x7a, 0x02, 0x4b, 0xea, 0xbd, 0x16, + 0x59, 0x33, 0x46, 0xef, 0xbc, 0xad, 0x77, 0xc6, 0xb0, 0x76, 0xfc, 0xdb, 0x57, 0xc6, 0xed, 0x29, + 0x77, 0x8c, 0xb1, 0xf8, 0x9f, 0xf2, 0x30, 0xee, 0x2c, 0x9c, 0x2d, 0xc9, 0x4e, 0xf4, 0x27, 0xff, + 0x0b, 0x00, 0x00, 0xff, 0xff, 0x79, 0x6e, 0xf2, 0x47, 0x70, 0x1f, 0x00, 0x00, } diff --git a/isula/isula_image.proto b/isula/isula_image.proto index 7a4258501ad34168fa35a7b3f7ac0579b046e738..ec113686d116db0def4f2ab75c63bd65b8de63eb 100644 --- a/isula/isula_image.proto +++ b/isula/isula_image.proto @@ -424,6 +424,15 @@ message ListImagesRequest { bool check = 2; } +message HealthCheck { + repeated string test = 1; + int64 interval = 2; + int64 timeout = 3; + int64 start_period = 4; + int32 retries = 5; + bool exit_on_unhealthy = 6; +} + // Basic information about a container image. message Image { // ID of the image. @@ -450,6 +459,9 @@ message Image { // oci image spec ImageSpec spec = 9; + + // Health check + HealthCheck healthcheck = 10; } message ListImagesResponse {