This commit is contained in:
Pavel Sviderski
2024-12-04 18:24:47 +10:00
parent a4247b0097
commit 7d47d274a0
2 changed files with 2 additions and 1 deletions
-1
View File
@@ -192,5 +192,4 @@ func (s *Server) PullImage(req *pb.PullImageRequest, stream grpc.ServerStreaming
return status.Errorf(codes.Canceled, "pull image: %v", ctx.Err()) return status.Errorf(codes.Canceled, "pull image: %v", ctx.Err())
} }
} }
} }
+2
View File
@@ -6,11 +6,13 @@ import (
) )
const ( const (
LabelManaged = "uncloud.managed"
LabelServiceID = "uncloud.service.id" LabelServiceID = "uncloud.service.id"
LabelServiceName = "uncloud.service.name" LabelServiceName = "uncloud.service.name"
LabelServiceMode = "uncloud.service.mode" LabelServiceMode = "uncloud.service.mode"
) )
// TODO: move to api package.
type Container struct { type Container struct {
types.Container types.Container
} }