From fbc129d6134bca30772559f030c030c9624fcedd Mon Sep 17 00:00:00 2001 From: Justin Chadwell Date: Wed, 19 Apr 2023 18:00:56 +0100 Subject: [PATCH] build: remove metadata-file from progress api Signed-off-by: Justin Chadwell --- commands/build.go | 8 -- commands/build_test.go | 9 -- controller/build/build.go | 5 +- controller/pb/controller.pb.go | 253 ++++++++++++++++----------------- controller/pb/controller.proto | 9 +- 5 files changed, 128 insertions(+), 156 deletions(-) diff --git a/commands/build.go b/commands/build.go index f0421c23..9886b1fa 100644 --- a/commands/build.go +++ b/commands/build.go @@ -117,7 +117,6 @@ func (o *buildOptions) toControllerOptions() (controllerapi.BuildOptions, error) Target: o.target, Ulimits: dockerUlimitToControllerUlimit(o.ulimits), Builder: o.builder, - MetadataFile: o.metadataFile, NoCache: o.noCache, Pull: o.pull, ExportPush: o.exportPush, @@ -963,13 +962,6 @@ func resolvePaths(options *controllerapi.BuildOptions) (_ *controllerapi.BuildOp } options.SSH = ssh - if options.MetadataFile != "" { - options.MetadataFile, err = filepath.Abs(options.MetadataFile) - if err != nil { - return nil, err - } - } - return options, nil } diff --git a/commands/build_test.go b/commands/build_test.go index 7fa515dc..7fa84772 100644 --- a/commands/build_test.go +++ b/commands/build_test.go @@ -235,15 +235,6 @@ func TestResolvePaths(t *testing.T) { }, }, }, - { - name: "metadatafile", - options: controllerapi.BuildOptions{ - MetadataFile: "test1", - }, - want: controllerapi.BuildOptions{ - MetadataFile: filepath.Join(tmpwd, "test1"), - }, - }, } for _, tt := range tests { t.Run(tt.name, func(t *testing.T) { diff --git a/controller/build/build.go b/controller/build/build.go index b4e999f7..d38b8675 100644 --- a/controller/build/build.go +++ b/controller/build/build.go @@ -166,7 +166,7 @@ func RunBuild(ctx context.Context, dockerCli command.Cli, in controllerapi.Build return nil, err } - res, err := buildTargets(ctx, dockerCli, b.NodeGroup, nodes, map[string]build.Options{defaultTargetName: opts}, progress, in.MetadataFile) + res, err := buildTargets(ctx, dockerCli, b.NodeGroup, nodes, map[string]build.Options{defaultTargetName: opts}, progress) err = wrapBuildError(err, false) if err != nil { return nil, err @@ -175,12 +175,11 @@ func RunBuild(ctx context.Context, dockerCli command.Cli, in controllerapi.Build } // buildTargets runs the specified build and returns the result. -func buildTargets(ctx context.Context, dockerCli command.Cli, ng *store.NodeGroup, nodes []builder.Node, opts map[string]build.Options, progress progress.Writer, metadataFile string) (map[string]*build.ResultContext, error) { +func buildTargets(ctx context.Context, dockerCli command.Cli, ng *store.NodeGroup, nodes []builder.Node, opts map[string]build.Options, progress progress.Writer) (map[string]*build.ResultContext, error) { res, err := build.BuildResults(ctx, nodes, opts, dockerutil.NewClient(dockerCli), confutil.ConfigDir(dockerCli), progress) if err != nil { return nil, err } - return res, err } diff --git a/controller/pb/controller.pb.go b/controller/pb/controller.pb.go index f3759e5e..ea772371 100644 --- a/controller/pb/controller.pb.go +++ b/controller/pb/controller.pb.go @@ -293,11 +293,10 @@ type BuildOptions struct { Target string `protobuf:"bytes,21,opt,name=Target,proto3" json:"Target,omitempty"` Ulimits *UlimitOpt `protobuf:"bytes,22,opt,name=Ulimits,proto3" json:"Ulimits,omitempty"` Builder string `protobuf:"bytes,23,opt,name=Builder,proto3" json:"Builder,omitempty"` - MetadataFile string `protobuf:"bytes,24,opt,name=MetadataFile,proto3" json:"MetadataFile,omitempty"` - NoCache bool `protobuf:"varint,25,opt,name=NoCache,proto3" json:"NoCache,omitempty"` - Pull bool `protobuf:"varint,26,opt,name=Pull,proto3" json:"Pull,omitempty"` - ExportPush bool `protobuf:"varint,27,opt,name=ExportPush,proto3" json:"ExportPush,omitempty"` - ExportLoad bool `protobuf:"varint,28,opt,name=ExportLoad,proto3" json:"ExportLoad,omitempty"` + NoCache bool `protobuf:"varint,24,opt,name=NoCache,proto3" json:"NoCache,omitempty"` + Pull bool `protobuf:"varint,25,opt,name=Pull,proto3" json:"Pull,omitempty"` + ExportPush bool `protobuf:"varint,26,opt,name=ExportPush,proto3" json:"ExportPush,omitempty"` + ExportLoad bool `protobuf:"varint,27,opt,name=ExportLoad,proto3" json:"ExportLoad,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -488,13 +487,6 @@ func (m *BuildOptions) GetBuilder() string { return "" } -func (m *BuildOptions) GetMetadataFile() string { - if m != nil { - return m.MetadataFile - } - return "" -} - func (m *BuildOptions) GetNoCache() bool { if m != nil { return m.NoCache @@ -2115,125 +2107,124 @@ func init() { func init() { proto.RegisterFile("controller.proto", fileDescriptor_ed7f10298fa1d90f) } var fileDescriptor_ed7f10298fa1d90f = []byte{ - // 1887 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x58, 0x5f, 0x73, 0x1b, 0xb7, - 0x11, 0xef, 0x91, 0x14, 0xff, 0x2c, 0x45, 0x59, 0x46, 0xe5, 0x14, 0xa6, 0xdd, 0x58, 0x3e, 0xd9, - 0x2e, 0xa7, 0xee, 0x50, 0x89, 0xd2, 0x54, 0x49, 0xec, 0xcc, 0x54, 0xa2, 0xc4, 0x91, 0x32, 0xd6, - 0x9f, 0x39, 0xca, 0xce, 0xa4, 0x9d, 0x69, 0xe6, 0x48, 0x42, 0xd4, 0x0d, 0x8f, 0x07, 0xf6, 0x00, - 0x4a, 0xa2, 0x9f, 0xfa, 0xd2, 0xd7, 0xbe, 0xf7, 0x23, 0x74, 0xfa, 0x29, 0xfa, 0x69, 0xfa, 0xd6, - 0xe9, 0x47, 0xe8, 0x2c, 0x80, 0x3b, 0x1e, 0x45, 0x1e, 0x25, 0x35, 0x4f, 0x04, 0x96, 0xbf, 0xdf, - 0x62, 0x77, 0xb1, 0x58, 0x2c, 0x0e, 0x56, 0x3b, 0x3c, 0x90, 0x21, 0xf7, 0x7d, 0x16, 0xd6, 0x87, - 0x21, 0x97, 0x9c, 0xac, 0xb5, 0x47, 0x9e, 0xdf, 0xbd, 0xae, 0x27, 0xfe, 0xb8, 0xfc, 0xbc, 0xfa, - 0xa6, 0xe7, 0xc9, 0x8b, 0x51, 0xbb, 0xde, 0xe1, 0x83, 0xcd, 0x01, 0x6f, 0x8f, 0x37, 0x15, 0xaa, - 0xef, 0xc9, 0x4d, 0x77, 0xe8, 0x6d, 0x0a, 0x16, 0x5e, 0x7a, 0x1d, 0x26, 0x36, 0x0d, 0x29, 0xfa, - 0xd5, 0x2a, 0xed, 0x1a, 0xac, 0xbd, 0xf3, 0x84, 0x3c, 0x0d, 0x79, 0x87, 0x09, 0xc1, 0x84, 0xc3, - 0xfe, 0x3c, 0x62, 0x42, 0x92, 0x55, 0xc8, 0x3a, 0xec, 0x9c, 0x5a, 0xeb, 0x56, 0xad, 0xe4, 0xe0, - 0xd0, 0x3e, 0x85, 0x47, 0x37, 0x90, 0x62, 0xc8, 0x03, 0xc1, 0xc8, 0x36, 0x2c, 0x1d, 0x06, 0xe7, - 0x5c, 0x50, 0x6b, 0x3d, 0x5b, 0x2b, 0x6f, 0x3d, 0xaf, 0xcf, 0xb3, 0xb2, 0x6e, 0x78, 0x88, 0x74, - 0x34, 0xde, 0x16, 0x50, 0x4e, 0x48, 0xc9, 0x53, 0x28, 0x45, 0xd3, 0x3d, 0xb3, 0xf0, 0x44, 0x40, - 0x9a, 0xb0, 0x7c, 0x18, 0x5c, 0xf2, 0x3e, 0x6b, 0xf0, 0xe0, 0xdc, 0xeb, 0xd1, 0xcc, 0xba, 0x55, - 0x2b, 0x6f, 0xd9, 0xf3, 0x17, 0x4b, 0x22, 0x9d, 0x29, 0x9e, 0xfd, 0x1d, 0xd0, 0x3d, 0x4f, 0x74, - 0x78, 0x10, 0xb0, 0x4e, 0xe4, 0x4c, 0xaa, 0xd3, 0xd3, 0x36, 0x65, 0x6e, 0xd8, 0x64, 0x3f, 0x81, - 0xc7, 0x73, 0x74, 0xe9, 0xb0, 0xd8, 0x7f, 0x82, 0xe5, 0x5d, 0xb4, 0x2d, 0x5d, 0xf9, 0x5b, 0x28, - 0x9c, 0x0c, 0xa5, 0xc7, 0x03, 0xb1, 0xd8, 0x1b, 0xa5, 0xc6, 0x20, 0x9d, 0x88, 0x62, 0xff, 0xbd, - 0x6c, 0x16, 0x30, 0x02, 0xb2, 0x0e, 0xe5, 0x06, 0x0f, 0x24, 0xbb, 0x96, 0xa7, 0xae, 0xbc, 0x30, - 0x0b, 0x25, 0x45, 0xe4, 0x15, 0xac, 0xec, 0xf1, 0x4e, 0x9f, 0x85, 0xe7, 0x9e, 0xcf, 0x8e, 0xdd, - 0x01, 0x33, 0x2e, 0xdd, 0x90, 0x92, 0x6f, 0xd1, 0x6b, 0x2f, 0x90, 0xcd, 0x51, 0xd0, 0xa1, 0x59, - 0x65, 0xda, 0xb3, 0xb4, 0x5d, 0x35, 0x30, 0x67, 0xc2, 0x20, 0x7f, 0x84, 0x0a, 0xaa, 0xe9, 0x9a, - 0xa5, 0x05, 0xcd, 0xa9, 0xc4, 0xf8, 0xf2, 0x76, 0xef, 0xea, 0x53, 0xbc, 0xfd, 0x40, 0x86, 0x63, - 0x67, 0x5a, 0x17, 0x59, 0x83, 0xa5, 0x1d, 0xdf, 0xe7, 0x57, 0x74, 0x69, 0x3d, 0x5b, 0x2b, 0x39, - 0x7a, 0x42, 0x7e, 0x07, 0x85, 0x1d, 0x29, 0x99, 0x90, 0x82, 0xe6, 0xd5, 0x62, 0x4f, 0xe7, 0x2f, - 0xa6, 0x41, 0x4e, 0x04, 0x26, 0x27, 0x50, 0x52, 0xeb, 0xef, 0x84, 0x3d, 0x41, 0x0b, 0x8a, 0xf9, - 0xf9, 0x1d, 0xcc, 0x8c, 0x39, 0xda, 0xc4, 0x89, 0x0e, 0xb2, 0x0f, 0xa5, 0x86, 0xdb, 0xb9, 0x60, - 0xcd, 0x90, 0x0f, 0x68, 0x51, 0x29, 0xfc, 0xd5, 0x7c, 0x85, 0x0a, 0x66, 0x14, 0x1a, 0x35, 0x31, - 0x93, 0xec, 0x40, 0x41, 0x4d, 0xce, 0x38, 0x2d, 0xdd, 0x4f, 0x49, 0xc4, 0x23, 0x36, 0x2c, 0x37, - 0x7a, 0x21, 0x1f, 0x0d, 0x4f, 0xdd, 0x90, 0x05, 0x92, 0x82, 0xda, 0xea, 0x29, 0x19, 0x79, 0x03, - 0x85, 0xfd, 0xeb, 0x21, 0x0f, 0xa5, 0xa0, 0xe5, 0x45, 0x87, 0x57, 0x83, 0xcc, 0x02, 0x86, 0x41, - 0x3e, 0x05, 0xd8, 0xbf, 0x96, 0xa1, 0x7b, 0xc0, 0x31, 0xec, 0xcb, 0x6a, 0x3b, 0x12, 0x12, 0xd2, - 0x84, 0xfc, 0x3b, 0xb7, 0xcd, 0x7c, 0x41, 0x2b, 0x4a, 0x77, 0xfd, 0x0e, 0x81, 0xd5, 0x04, 0xbd, - 0x90, 0x61, 0x63, 0x5e, 0x1f, 0x33, 0x79, 0xc5, 0xc3, 0xfe, 0x11, 0xef, 0x32, 0xba, 0xa2, 0xf3, - 0x3a, 0x21, 0x22, 0x2f, 0xa0, 0x72, 0xcc, 0x75, 0xf0, 0x3c, 0x5f, 0xb2, 0x90, 0x3e, 0x50, 0xc6, - 0x4c, 0x0b, 0xd5, 0x59, 0xf6, 0x5d, 0x79, 0xce, 0xc3, 0x81, 0xa0, 0xab, 0x0a, 0x31, 0x11, 0x60, - 0x06, 0xb5, 0x58, 0x27, 0x64, 0x52, 0xd0, 0x87, 0x8b, 0x32, 0x48, 0x83, 0x9c, 0x08, 0x4c, 0x28, - 0x14, 0x5a, 0x17, 0x83, 0x96, 0xf7, 0x91, 0x51, 0xb2, 0x6e, 0xd5, 0xb2, 0x4e, 0x34, 0x25, 0xaf, - 0x21, 0xdb, 0x6a, 0x1d, 0xd0, 0x9f, 0x2b, 0x6d, 0x8f, 0x53, 0xb4, 0xb5, 0x0e, 0x1c, 0x44, 0x11, - 0x02, 0xb9, 0x33, 0xb7, 0x27, 0xe8, 0x9a, 0xb2, 0x4b, 0x8d, 0xc9, 0x27, 0x90, 0x3f, 0x73, 0xc3, - 0x1e, 0x93, 0xf4, 0x91, 0xf2, 0xd9, 0xcc, 0xc8, 0xd7, 0x50, 0x78, 0xef, 0x7b, 0x03, 0x4f, 0x0a, - 0xfa, 0xc9, 0xa2, 0xc3, 0xa9, 0x41, 0x27, 0x43, 0xe9, 0x44, 0x78, 0xb4, 0x56, 0xc5, 0x9b, 0x85, - 0xf4, 0x17, 0x4a, 0x67, 0x34, 0xc5, 0x74, 0x39, 0x62, 0xd2, 0xed, 0xba, 0xd2, 0x6d, 0x7a, 0x3e, - 0xa3, 0x54, 0xa7, 0x4b, 0x52, 0x86, 0x6c, 0x13, 0x52, 0xfa, 0x78, 0xdd, 0xaa, 0x15, 0x9d, 0x68, - 0x8a, 0xe6, 0x9f, 0x8e, 0x7c, 0x9f, 0x56, 0x95, 0x58, 0x8d, 0x75, 0x7e, 0x60, 0xaa, 0x9c, 0x8e, - 0xc4, 0x05, 0x7d, 0xa2, 0xfe, 0x49, 0x48, 0x26, 0xff, 0xbf, 0xe3, 0x6e, 0x97, 0x3e, 0x4d, 0xfe, - 0x8f, 0x92, 0xea, 0xef, 0x81, 0xcc, 0x96, 0x03, 0x2c, 0xa3, 0x7d, 0x36, 0x8e, 0xca, 0x68, 0x9f, - 0x8d, 0xb1, 0x22, 0x5c, 0xba, 0xfe, 0x28, 0x2a, 0x66, 0x7a, 0xf2, 0x4d, 0xe6, 0x2b, 0xab, 0xfa, - 0x16, 0x56, 0xa6, 0x4f, 0xea, 0xbd, 0xd8, 0x5f, 0x43, 0x39, 0x91, 0x8e, 0xf7, 0xa1, 0xda, 0x1b, - 0xf0, 0xa0, 0xe9, 0x05, 0xae, 0xef, 0x7d, 0x64, 0xe9, 0x17, 0xea, 0xbf, 0x2c, 0x58, 0x9d, 0xa0, - 0xcc, 0x65, 0x7a, 0x01, 0xab, 0x3a, 0x04, 0x2c, 0x8c, 0x64, 0xe6, 0x5e, 0x7d, 0x3b, 0x7f, 0x93, - 0x6f, 0x6a, 0xa8, 0xdf, 0xa4, 0xeb, 0xc3, 0x34, 0xa3, 0xb5, 0xda, 0x80, 0x47, 0x73, 0xa1, 0xf7, - 0x72, 0x74, 0x3b, 0x71, 0x53, 0x60, 0x12, 0xa8, 0x4b, 0x45, 0x33, 0xd5, 0x18, 0x73, 0xb8, 0xc9, - 0xc3, 0x81, 0x2b, 0x0d, 0xd7, 0xcc, 0xd0, 0xf9, 0x72, 0xa2, 0xaa, 0xa8, 0xfc, 0x1f, 0x0f, 0x63, - 0x2e, 0x8e, 0xc9, 0x2e, 0x2c, 0xed, 0x48, 0x19, 0xe2, 0xed, 0x88, 0x01, 0xf8, 0xcd, 0xad, 0xb5, - 0xa9, 0xae, 0xe0, 0xda, 0x61, 0x4d, 0xc5, 0xe2, 0xb1, 0xc7, 0x84, 0xf4, 0x02, 0x17, 0x0b, 0x8c, - 0xba, 0xcc, 0x4a, 0x4e, 0x52, 0x54, 0xfd, 0x0a, 0x60, 0x42, 0xbb, 0x97, 0xf3, 0xff, 0xb4, 0xe0, - 0xe1, 0x4c, 0x01, 0x9e, 0xeb, 0xc9, 0xc1, 0xb4, 0x27, 0x5b, 0x77, 0x2c, 0xe6, 0xb3, 0xfe, 0xfc, - 0x04, 0x6b, 0x8f, 0x21, 0xaf, 0x6f, 0xbd, 0xb9, 0x16, 0x56, 0xa1, 0xb8, 0xe7, 0x09, 0xb7, 0xed, - 0xb3, 0xae, 0xa2, 0x16, 0x9d, 0x78, 0xae, 0xae, 0x5c, 0x65, 0xbd, 0x8e, 0x9e, 0x9e, 0xd8, 0xba, - 0xbc, 0x91, 0x15, 0xc8, 0xc4, 0xed, 0x5a, 0xe6, 0x70, 0x0f, 0xc1, 0xd8, 0x6b, 0x68, 0x57, 0x4b, - 0x8e, 0x9e, 0xd8, 0x4d, 0xc8, 0xeb, 0x82, 0x39, 0x83, 0xaf, 0x42, 0x11, 0x6b, 0x8b, 0x6a, 0x59, - 0xb4, 0xcd, 0xf1, 0x1c, 0xdd, 0xdb, 0x0f, 0x2e, 0xcd, 0xb2, 0x38, 0xb4, 0x6d, 0x58, 0x39, 0x0c, - 0xc4, 0x90, 0x75, 0x64, 0xfa, 0xb9, 0x3a, 0x81, 0x07, 0x31, 0xc6, 0x9c, 0xaa, 0x44, 0xa7, 0x65, - 0xdd, 0xbf, 0xd3, 0xfa, 0x87, 0x05, 0xa5, 0xb8, 0x96, 0x92, 0x06, 0xe4, 0x55, 0x50, 0xa3, 0x7e, - 0xf7, 0xf5, 0x2d, 0xc5, 0xb7, 0xfe, 0x41, 0xa1, 0xcd, 0x9d, 0xa6, 0xa9, 0xd5, 0xef, 0xa1, 0x9c, - 0x10, 0xcf, 0xd9, 0xc7, 0xad, 0xe4, 0x3e, 0xa6, 0x5e, 0x46, 0x7a, 0x91, 0xe4, 0x2e, 0xef, 0x41, - 0x5e, 0x0b, 0xe7, 0x9e, 0x46, 0x02, 0xb9, 0x03, 0x37, 0xd4, 0x3b, 0x9c, 0x75, 0xd4, 0x18, 0x65, - 0x2d, 0x7e, 0x2e, 0x55, 0x94, 0xb3, 0x8e, 0x1a, 0xdb, 0x0f, 0xa0, 0x62, 0x7a, 0x57, 0xd3, 0xcc, - 0xbe, 0x84, 0x87, 0x93, 0x4e, 0x37, 0x3d, 0xf4, 0x6b, 0x40, 0x92, 0x30, 0x43, 0x7e, 0x06, 0x65, - 0x7c, 0x39, 0xa4, 0xd3, 0x6c, 0x58, 0xd6, 0x00, 0xb3, 0x5d, 0x04, 0x72, 0x7d, 0x36, 0xd6, 0x01, - 0x2e, 0x39, 0x6a, 0x6c, 0xff, 0xcd, 0xc2, 0x07, 0xc0, 0x70, 0x24, 0x8f, 0x98, 0x10, 0x6e, 0x0f, - 0xf7, 0x34, 0x77, 0x18, 0x78, 0xd2, 0x6c, 0xe8, 0xab, 0xb4, 0x87, 0xc0, 0x70, 0x24, 0x11, 0x66, - 0x58, 0x07, 0x3f, 0x73, 0x14, 0x8b, 0x6c, 0x43, 0x6e, 0xcf, 0x95, 0xae, 0x09, 0x6f, 0x4a, 0xdb, - 0x83, 0x88, 0x04, 0x11, 0xa7, 0xbb, 0x05, 0x7c, 0xed, 0x0c, 0x47, 0xd2, 0x7e, 0x01, 0xab, 0x37, - 0xb5, 0xcf, 0x71, 0xed, 0x0b, 0x28, 0x27, 0xb4, 0xa8, 0x8c, 0x3e, 0x69, 0x2a, 0x40, 0xd1, 0xc1, - 0x21, 0xfa, 0x1a, 0x1b, 0xb2, 0xac, 0xd7, 0xc0, 0xf0, 0x2b, 0xd5, 0x71, 0x04, 0xff, 0x92, 0x81, - 0x42, 0xa4, 0x62, 0x7b, 0xca, 0xef, 0xe7, 0x69, 0x7e, 0xcf, 0xba, 0xfc, 0x25, 0xe4, 0xd4, 0xcd, - 0x9e, 0x59, 0xd4, 0x33, 0x34, 0xbb, 0x09, 0x9a, 0xba, 0xf4, 0xbf, 0x85, 0xbc, 0xc3, 0x04, 0xf6, - 0x37, 0xfa, 0x25, 0xb0, 0x31, 0x9f, 0xa8, 0x31, 0x13, 0xb2, 0x21, 0x21, 0xbd, 0xe5, 0xf5, 0x02, - 0xd7, 0xa7, 0xb9, 0x45, 0x74, 0x8d, 0x49, 0xd0, 0xb5, 0x60, 0x12, 0xee, 0xbf, 0x5a, 0x50, 0x5e, - 0x18, 0xea, 0xc5, 0x6f, 0xb5, 0x99, 0xf7, 0x63, 0xf6, 0xff, 0x7c, 0x3f, 0xfe, 0xc7, 0x9a, 0x56, - 0xa4, 0xda, 0x18, 0x3c, 0xc4, 0x43, 0xee, 0x05, 0xd2, 0xa4, 0x6c, 0x42, 0x82, 0x86, 0x36, 0x06, - 0x5d, 0x53, 0x0e, 0x71, 0x38, 0x29, 0x6b, 0x59, 0x53, 0xd6, 0x30, 0x09, 0xde, 0x0b, 0x16, 0xaa, - 0x10, 0x95, 0x1c, 0x35, 0xc6, 0x9b, 0xf3, 0x98, 0x2b, 0xe9, 0x92, 0xca, 0x16, 0x33, 0x53, 0xfa, - 0xae, 0xba, 0x34, 0xaf, 0x1d, 0x6f, 0x5c, 0xa9, 0xfa, 0x7c, 0xcc, 0x51, 0x56, 0x50, 0x40, 0x3d, - 0x41, 0xdc, 0x99, 0x1c, 0xd3, 0xa2, 0x4e, 0xb5, 0x33, 0x39, 0xc6, 0x52, 0xeb, 0x70, 0xdf, 0x6f, - 0xbb, 0x9d, 0x3e, 0x2d, 0xe9, 0x1a, 0x1f, 0xcd, 0xb1, 0xb5, 0xc3, 0xe8, 0x7a, 0xae, 0xaf, 0x1e, - 0x0a, 0x45, 0x27, 0x9a, 0xda, 0x3b, 0x50, 0x8a, 0x93, 0x02, 0xab, 0x77, 0xb3, 0xab, 0x82, 0x5e, - 0x71, 0x32, 0xcd, 0x6e, 0x94, 0xcf, 0x99, 0xd9, 0x7c, 0xce, 0x26, 0xf2, 0x79, 0x1b, 0x2a, 0x53, - 0xe9, 0x81, 0x20, 0x87, 0x5f, 0x09, 0xa3, 0x48, 0x8d, 0x51, 0xd6, 0xe0, 0xbe, 0x7e, 0x0a, 0x57, - 0x1c, 0x35, 0xb6, 0x37, 0xa0, 0x32, 0x95, 0x18, 0xf3, 0x8a, 0x9a, 0xfd, 0x1c, 0x2a, 0x2d, 0xe9, - 0xca, 0xd1, 0x82, 0x6f, 0x17, 0xff, 0xb5, 0x60, 0x25, 0xc2, 0x98, 0x1a, 0xf3, 0x5b, 0x28, 0x5e, - 0xb2, 0x50, 0xb2, 0xeb, 0xb8, 0x90, 0xd3, 0xfa, 0x80, 0xb7, 0xc7, 0xf5, 0xe8, 0xeb, 0x09, 0xe6, - 0xc1, 0x07, 0x85, 0x70, 0x62, 0x24, 0xf9, 0x06, 0x8a, 0x42, 0xe9, 0x61, 0xd1, 0x5d, 0xfe, 0x69, - 0x1a, 0xcb, 0xac, 0x17, 0xe3, 0xc9, 0x26, 0xe4, 0x7c, 0xde, 0x13, 0x6a, 0xdf, 0xcb, 0x5b, 0x4f, - 0xd2, 0x78, 0xef, 0x78, 0xcf, 0x51, 0x40, 0xf2, 0x06, 0x8a, 0x57, 0x6e, 0x18, 0x78, 0x41, 0x2f, - 0x7a, 0x42, 0x3f, 0x4b, 0x23, 0x7d, 0xaf, 0x71, 0x4e, 0x4c, 0xb0, 0x2b, 0x78, 0x5c, 0xce, 0xb9, - 0x89, 0x89, 0xfd, 0x03, 0x66, 0x2d, 0x4e, 0x8d, 0xfb, 0x87, 0x50, 0xd1, 0x99, 0xff, 0x81, 0x85, - 0x02, 0x3b, 0x23, 0x6b, 0xd1, 0xe9, 0xdc, 0x4d, 0x42, 0x9d, 0x69, 0xa6, 0xfd, 0xa3, 0xb9, 0x2c, - 0x22, 0x01, 0xe6, 0xd2, 0xd0, 0xed, 0xf4, 0xdd, 0x5e, 0xb4, 0x4f, 0xd1, 0x14, 0xff, 0xb9, 0x34, - 0xeb, 0xe9, 0x03, 0x1a, 0x4d, 0x31, 0x37, 0x43, 0x76, 0xe9, 0x89, 0x49, 0x93, 0x16, 0xcf, 0xb7, - 0xfe, 0x5d, 0x00, 0x68, 0xc4, 0xf6, 0x90, 0x23, 0x2c, 0x80, 0xe7, 0x9c, 0xa4, 0x96, 0xbe, 0xd8, - 0xeb, 0xaa, 0xbd, 0x08, 0x62, 0x22, 0x71, 0x0a, 0x4b, 0xca, 0x7c, 0xb2, 0xa8, 0x27, 0x88, 0x14, - 0x6e, 0x2c, 0xc4, 0x18, 0x8d, 0x3f, 0x60, 0x4b, 0xa3, 0xbb, 0x72, 0xf2, 0xf2, 0xb6, 0xae, 0x5d, - 0xeb, 0x7d, 0x75, 0xb7, 0xe6, 0x9e, 0x7c, 0x07, 0x79, 0x5d, 0x7c, 0xc8, 0x2f, 0xe7, 0x33, 0xcc, - 0x41, 0xa9, 0x2e, 0xfe, 0xbb, 0x66, 0x7d, 0x66, 0x91, 0x1f, 0x01, 0x26, 0x97, 0x35, 0x49, 0xf9, - 0xc0, 0x30, 0x73, 0xeb, 0x57, 0x6b, 0xb7, 0x03, 0x8d, 0xb1, 0xef, 0x21, 0xaf, 0x0f, 0x01, 0x49, - 0x2b, 0xfa, 0xc9, 0x63, 0x5b, 0x7d, 0xb1, 0x18, 0xa4, 0x95, 0x7e, 0x66, 0x91, 0x0f, 0x58, 0xaa, - 0x54, 0x7f, 0x47, 0x5e, 0xa4, 0xed, 0x6f, 0xb2, 0x45, 0xac, 0xbe, 0xbc, 0x05, 0x65, 0xcc, 0x3d, - 0x82, 0x1c, 0x76, 0x21, 0x69, 0x79, 0x95, 0x68, 0x61, 0xd2, 0xf2, 0x6a, 0xaa, 0x89, 0x71, 0xcc, - 0xcd, 0x45, 0xec, 0x05, 0xad, 0x49, 0xb4, 0x5d, 0x1b, 0x0b, 0x30, 0x91, 0xc6, 0x9a, 0x45, 0x2e, - 0xa0, 0x32, 0xf5, 0x0d, 0x96, 0xfc, 0x3a, 0xdd, 0x90, 0x9b, 0x9f, 0x74, 0xab, 0xaf, 0xef, 0x84, - 0x35, 0xd6, 0xcb, 0x64, 0xc3, 0x67, 0xfe, 0x26, 0xf5, 0xdb, 0xb6, 0x7e, 0xfa, 0x7b, 0x6a, 0x75, - 0xf3, 0xce, 0x78, 0xbd, 0xea, 0x6e, 0xee, 0x0f, 0x99, 0x61, 0xbb, 0x9d, 0x57, 0x9f, 0xa6, 0xbf, - 0xf8, 0x5f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xc2, 0x66, 0x27, 0x0f, 0x01, 0x17, 0x00, 0x00, + // 1870 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x58, 0x5f, 0x53, 0x23, 0xc7, + 0x11, 0xcf, 0x22, 0xa1, 0x3f, 0x2d, 0xc4, 0x71, 0x13, 0xce, 0x99, 0xd3, 0x39, 0x3e, 0x6e, 0xb9, + 0xbb, 0xa8, 0x72, 0x29, 0x61, 0xe3, 0x38, 0xd8, 0xbe, 0x73, 0x55, 0x40, 0xa0, 0x02, 0xd7, 0x1d, + 0x50, 0x03, 0x77, 0x2e, 0x27, 0x55, 0x71, 0x2d, 0xd2, 0x20, 0xb6, 0xb4, 0xda, 0x51, 0x76, 0x46, + 0x80, 0xfc, 0x94, 0x97, 0xbc, 0xe6, 0x7b, 0xa4, 0xf2, 0x29, 0xf2, 0x69, 0xf2, 0x96, 0xca, 0x4b, + 0xde, 0x53, 0x3d, 0x33, 0xbb, 0x5a, 0x21, 0xad, 0x80, 0xf8, 0x49, 0xdb, 0xbd, 0xbf, 0x5f, 0x4f, + 0x77, 0x4f, 0x4f, 0x4f, 0xaf, 0x60, 0xa5, 0x2d, 0x42, 0x15, 0x89, 0x20, 0xe0, 0x51, 0x63, 0x10, + 0x09, 0x25, 0xc8, 0xea, 0xd9, 0xd0, 0x0f, 0x3a, 0xd7, 0x8d, 0xd4, 0x8b, 0xcb, 0xcf, 0x6a, 0xaf, + 0xbb, 0xbe, 0xba, 0x18, 0x9e, 0x35, 0xda, 0xa2, 0xbf, 0xd1, 0x17, 0x67, 0xa3, 0x0d, 0x8d, 0xea, + 0xf9, 0x6a, 0xc3, 0x1b, 0xf8, 0x1b, 0x92, 0x47, 0x97, 0x7e, 0x9b, 0xcb, 0x0d, 0x4b, 0x8a, 0x7f, + 0x8d, 0x49, 0xb7, 0x0e, 0xab, 0x6f, 0x7d, 0xa9, 0x8e, 0x23, 0xd1, 0xe6, 0x52, 0x72, 0xc9, 0xf8, + 0x9f, 0x87, 0x5c, 0x2a, 0xb2, 0x02, 0x39, 0xc6, 0xcf, 0xa9, 0xb3, 0xe6, 0xd4, 0xcb, 0x0c, 0x1f, + 0xdd, 0x63, 0x78, 0x74, 0x03, 0x29, 0x07, 0x22, 0x94, 0x9c, 0x6c, 0xc1, 0xe2, 0x41, 0x78, 0x2e, + 0x24, 0x75, 0xd6, 0x72, 0xf5, 0xca, 0xe6, 0xb3, 0xc6, 0x2c, 0x2f, 0x1b, 0x96, 0x87, 0x48, 0x66, + 0xf0, 0xae, 0x84, 0x4a, 0x4a, 0x4b, 0x3e, 0x86, 0x72, 0x2c, 0xee, 0xda, 0x85, 0xc7, 0x0a, 0xd2, + 0x82, 0xa5, 0x83, 0xf0, 0x52, 0xf4, 0x78, 0x53, 0x84, 0xe7, 0x7e, 0x97, 0x2e, 0xac, 0x39, 0xf5, + 0xca, 0xa6, 0x3b, 0x7b, 0xb1, 0x34, 0x92, 0x4d, 0xf0, 0xdc, 0x6f, 0x81, 0xee, 0xfa, 0xb2, 0x2d, + 0xc2, 0x90, 0xb7, 0xe3, 0x60, 0x32, 0x83, 0x9e, 0xf4, 0x69, 0xe1, 0x86, 0x4f, 0xee, 0x13, 0x78, + 0x3c, 0xc3, 0x96, 0x49, 0x8b, 0xfb, 0x27, 0x58, 0xda, 0x41, 0xdf, 0xb2, 0x8d, 0xbf, 0x81, 0xe2, + 0xd1, 0x40, 0xf9, 0x22, 0x94, 0xf3, 0xa3, 0xd1, 0x66, 0x2c, 0x92, 0xc5, 0x14, 0xf7, 0xbf, 0x60, + 0x17, 0xb0, 0x0a, 0xb2, 0x06, 0x95, 0xa6, 0x08, 0x15, 0xbf, 0x56, 0xc7, 0x9e, 0xba, 0xb0, 0x0b, + 0xa5, 0x55, 0xe4, 0x25, 0x2c, 0xef, 0x8a, 0x76, 0x8f, 0x47, 0xe7, 0x7e, 0xc0, 0x0f, 0xbd, 0x3e, + 0xb7, 0x21, 0xdd, 0xd0, 0x92, 0x6f, 0x30, 0x6a, 0x3f, 0x54, 0xad, 0x61, 0xd8, 0xa6, 0x39, 0xed, + 0xda, 0xd3, 0xac, 0x5d, 0xb5, 0x30, 0x36, 0x66, 0x90, 0x3f, 0x42, 0x15, 0xcd, 0x74, 0xec, 0xd2, + 0x92, 0xe6, 0x75, 0x61, 0x7c, 0x71, 0x7b, 0x74, 0x8d, 0x09, 0xde, 0x5e, 0xa8, 0xa2, 0x11, 0x9b, + 0xb4, 0x45, 0x56, 0x61, 0x71, 0x3b, 0x08, 0xc4, 0x15, 0x5d, 0x5c, 0xcb, 0xd5, 0xcb, 0xcc, 0x08, + 0xe4, 0x77, 0x50, 0xdc, 0x56, 0x8a, 0x4b, 0x25, 0x69, 0x41, 0x2f, 0xf6, 0xf1, 0xec, 0xc5, 0x0c, + 0x88, 0xc5, 0x60, 0x72, 0x04, 0x65, 0xbd, 0xfe, 0x76, 0xd4, 0x95, 0xb4, 0xa8, 0x99, 0x9f, 0xdd, + 0xc1, 0xcd, 0x84, 0x63, 0x5c, 0x1c, 0xdb, 0x20, 0x7b, 0x50, 0x6e, 0x7a, 0xed, 0x0b, 0xde, 0x8a, + 0x44, 0x9f, 0x96, 0xb4, 0xc1, 0x5f, 0xcd, 0x36, 0xa8, 0x61, 0xd6, 0xa0, 0x35, 0x93, 0x30, 0xc9, + 0x36, 0x14, 0xb5, 0x70, 0x2a, 0x68, 0xf9, 0x7e, 0x46, 0x62, 0x1e, 0x71, 0x61, 0xa9, 0xd9, 0x8d, + 0xc4, 0x70, 0x70, 0xec, 0x45, 0x3c, 0x54, 0x14, 0xf4, 0x56, 0x4f, 0xe8, 0xc8, 0x6b, 0x28, 0xee, + 0x5d, 0x0f, 0x44, 0xa4, 0x24, 0xad, 0xcc, 0x3b, 0xbc, 0x06, 0x64, 0x17, 0xb0, 0x0c, 0xf2, 0x09, + 0xc0, 0xde, 0xb5, 0x8a, 0xbc, 0x7d, 0x81, 0x69, 0x5f, 0xd2, 0xdb, 0x91, 0xd2, 0x90, 0x16, 0x14, + 0xde, 0x7a, 0x67, 0x3c, 0x90, 0xb4, 0xaa, 0x6d, 0x37, 0xee, 0x90, 0x58, 0x43, 0x30, 0x0b, 0x59, + 0x36, 0xd6, 0xf5, 0x21, 0x57, 0x57, 0x22, 0xea, 0xbd, 0x13, 0x1d, 0x4e, 0x97, 0x4d, 0x5d, 0xa7, + 0x54, 0xe4, 0x39, 0x54, 0x0f, 0x85, 0x49, 0x9e, 0x1f, 0x28, 0x1e, 0xd1, 0x07, 0xda, 0x99, 0x49, + 0xa5, 0x3e, 0xcb, 0x81, 0xa7, 0xce, 0x45, 0xd4, 0x97, 0x74, 0x45, 0x23, 0xc6, 0x0a, 0xac, 0xa0, + 0x13, 0xde, 0x8e, 0xb8, 0x92, 0xf4, 0xe1, 0xbc, 0x0a, 0x32, 0x20, 0x16, 0x83, 0x09, 0x85, 0xe2, + 0xc9, 0x45, 0xff, 0xc4, 0xff, 0x91, 0x53, 0xb2, 0xe6, 0xd4, 0x73, 0x2c, 0x16, 0xc9, 0x2b, 0xc8, + 0x9d, 0x9c, 0xec, 0xd3, 0x9f, 0x6b, 0x6b, 0x8f, 0x33, 0xac, 0x9d, 0xec, 0x33, 0x44, 0x11, 0x02, + 0xf9, 0x53, 0xaf, 0x2b, 0xe9, 0xaa, 0xf6, 0x4b, 0x3f, 0x93, 0x8f, 0xa0, 0x70, 0xea, 0x45, 0x5d, + 0xae, 0xe8, 0x23, 0x1d, 0xb3, 0x95, 0xc8, 0x57, 0x50, 0x7c, 0x1f, 0xf8, 0x7d, 0x5f, 0x49, 0xfa, + 0xd1, 0xbc, 0xc3, 0x69, 0x40, 0x47, 0x03, 0xc5, 0x62, 0x3c, 0x7a, 0xab, 0xf3, 0xcd, 0x23, 0xfa, + 0x0b, 0x6d, 0x33, 0x16, 0xf1, 0x8d, 0x4d, 0x17, 0xa5, 0x6b, 0x4e, 0xbd, 0xc4, 0x62, 0x11, 0x5d, + 0x3b, 0x1e, 0x06, 0x01, 0x7d, 0xac, 0xd5, 0xfa, 0xd9, 0xec, 0x3d, 0x96, 0xc1, 0xf1, 0x50, 0x5e, + 0xd0, 0x9a, 0x7e, 0x93, 0xd2, 0x8c, 0xdf, 0xbf, 0x15, 0x5e, 0x87, 0x3e, 0x49, 0xbf, 0x47, 0x4d, + 0xed, 0xf7, 0x40, 0xa6, 0x8f, 0x3a, 0xb6, 0xc8, 0x1e, 0x1f, 0xc5, 0x2d, 0xb2, 0xc7, 0x47, 0x78, + 0xda, 0x2f, 0xbd, 0x60, 0x18, 0x37, 0x2a, 0x23, 0x7c, 0xbd, 0xf0, 0xa5, 0x53, 0x7b, 0x03, 0xcb, + 0x93, 0xa7, 0xf0, 0x5e, 0xec, 0xaf, 0xa0, 0x92, 0x2a, 0xb5, 0xfb, 0x50, 0xdd, 0x75, 0x78, 0xd0, + 0xf2, 0x43, 0x2f, 0xf0, 0x7f, 0xe4, 0xd9, 0x97, 0xe5, 0x3f, 0x1d, 0x58, 0x19, 0xa3, 0xec, 0x45, + 0x79, 0x01, 0x2b, 0x26, 0x05, 0x3c, 0x8a, 0x75, 0xf6, 0xce, 0x7c, 0x33, 0x7b, 0x03, 0x6f, 0x5a, + 0x68, 0xdc, 0xa4, 0x9b, 0x83, 0x32, 0x65, 0xb5, 0xd6, 0x84, 0x47, 0x33, 0xa1, 0xf7, 0x0a, 0x74, + 0x2b, 0x75, 0x0b, 0x60, 0x11, 0xe8, 0x0b, 0xc3, 0x30, 0xf5, 0x33, 0xd6, 0x67, 0x4b, 0x44, 0x7d, + 0x4f, 0x59, 0xae, 0x95, 0x30, 0xf8, 0x4a, 0xaa, 0x63, 0xe8, 0xda, 0x1e, 0x0d, 0x12, 0x2e, 0x3e, + 0x93, 0x1d, 0x58, 0xdc, 0x56, 0x2a, 0xc2, 0x9b, 0x0f, 0x13, 0xf0, 0x9b, 0x5b, 0xfb, 0x4e, 0x43, + 0xc3, 0x4d, 0xc0, 0x86, 0x8a, 0x8d, 0x61, 0x97, 0x4b, 0xe5, 0x87, 0x1e, 0x36, 0x0f, 0x7d, 0x51, + 0x95, 0x59, 0x5a, 0x55, 0xfb, 0x12, 0x60, 0x4c, 0xbb, 0x57, 0xf0, 0xff, 0x70, 0xe0, 0xe1, 0x54, + 0x73, 0x9d, 0x19, 0xc9, 0xfe, 0x64, 0x24, 0x9b, 0x77, 0x6c, 0xd4, 0xd3, 0xf1, 0xfc, 0x04, 0x6f, + 0x0f, 0xa1, 0x60, 0x6e, 0xb4, 0x99, 0x1e, 0xd6, 0xa0, 0xb4, 0xeb, 0x4b, 0xef, 0x2c, 0xe0, 0x1d, + 0x4d, 0x2d, 0xb1, 0x44, 0xd6, 0xd7, 0xa9, 0xf6, 0xde, 0x64, 0xcf, 0x08, 0xae, 0x69, 0x5d, 0x64, + 0x19, 0x16, 0x92, 0x51, 0x6c, 0xe1, 0x60, 0x17, 0xc1, 0x38, 0x47, 0x98, 0x50, 0xcb, 0xcc, 0x08, + 0x6e, 0x0b, 0x0a, 0xa6, 0x19, 0x4e, 0xe1, 0x6b, 0x50, 0x6a, 0xf9, 0x01, 0xd7, 0xe3, 0x88, 0xf1, + 0x39, 0x91, 0x31, 0xbc, 0xbd, 0xf0, 0xd2, 0x2e, 0x8b, 0x8f, 0xae, 0x0b, 0xcb, 0x07, 0xa1, 0x1c, + 0xf0, 0xb6, 0xca, 0x3e, 0x57, 0x47, 0xf0, 0x20, 0xc1, 0xd8, 0x53, 0x95, 0x9a, 0xa2, 0x9c, 0xfb, + 0x4f, 0x51, 0x7f, 0x77, 0xa0, 0x9c, 0xf4, 0x49, 0xd2, 0x84, 0x82, 0x4e, 0x6a, 0x3c, 0xcb, 0xbe, + 0xba, 0xa5, 0xb1, 0x36, 0x3e, 0x68, 0xb4, 0xbd, 0xaf, 0x0c, 0xb5, 0xf6, 0x1d, 0x54, 0x52, 0xea, + 0x19, 0xfb, 0xb8, 0x99, 0xde, 0xc7, 0xcc, 0x8b, 0xc6, 0x2c, 0x92, 0xde, 0xe5, 0x5d, 0x28, 0x18, + 0xe5, 0xcc, 0xd3, 0x48, 0x20, 0xbf, 0xef, 0x45, 0x66, 0x87, 0x73, 0x4c, 0x3f, 0xa3, 0xee, 0x44, + 0x9c, 0x2b, 0x9d, 0xe5, 0x1c, 0xd3, 0xcf, 0xee, 0x03, 0xa8, 0xda, 0xb9, 0xd4, 0x0e, 0xaa, 0x2f, + 0xe0, 0xe1, 0x78, 0x8a, 0xcd, 0x4e, 0xfd, 0x2a, 0x90, 0x34, 0xcc, 0x92, 0x9f, 0x42, 0x05, 0xbf, + 0x0a, 0xb2, 0x69, 0x2e, 0x2c, 0x19, 0x80, 0xdd, 0x2e, 0x02, 0xf9, 0x1e, 0x1f, 0x99, 0x04, 0x97, + 0x99, 0x7e, 0x76, 0xff, 0xe6, 0xe0, 0x70, 0x3f, 0x18, 0xaa, 0x77, 0x5c, 0x4a, 0xaf, 0x8b, 0x7b, + 0x9a, 0x3f, 0x08, 0x7d, 0x65, 0x37, 0xf4, 0x65, 0xd6, 0x90, 0x3f, 0x18, 0x2a, 0x84, 0x59, 0xd6, + 0xfe, 0xcf, 0x98, 0x66, 0x91, 0x2d, 0xc8, 0xef, 0x7a, 0xca, 0xb3, 0xe9, 0xcd, 0x18, 0x69, 0x10, + 0x91, 0x22, 0xa2, 0xb8, 0x53, 0xc4, 0x2f, 0x99, 0xc1, 0x50, 0xb9, 0xcf, 0x61, 0xe5, 0xa6, 0xf5, + 0x19, 0xa1, 0x7d, 0x0e, 0x95, 0x94, 0x15, 0x5d, 0xd1, 0x47, 0x2d, 0x0d, 0x28, 0x31, 0x7c, 0xc4, + 0x58, 0x13, 0x47, 0x96, 0xcc, 0x1a, 0x98, 0x7e, 0x6d, 0x3a, 0xc9, 0xe0, 0x5f, 0x16, 0xa0, 0x18, + 0x9b, 0xd8, 0x9a, 0x88, 0xfb, 0x59, 0x56, 0xdc, 0xd3, 0x21, 0x7f, 0x01, 0x79, 0x3c, 0x59, 0x36, + 0xe4, 0x8c, 0x79, 0xa0, 0xd5, 0x49, 0xd1, 0x10, 0x4e, 0xbe, 0x81, 0x02, 0xe3, 0x12, 0x67, 0x17, + 0x33, 0xe5, 0xaf, 0xcf, 0x26, 0x1a, 0xcc, 0x98, 0x6c, 0x49, 0x48, 0x3f, 0xf1, 0xbb, 0xa1, 0x17, + 0xd0, 0xfc, 0x3c, 0xba, 0xc1, 0xa4, 0xe8, 0x46, 0x31, 0x4e, 0xf7, 0x5f, 0x1d, 0xa8, 0xcc, 0x4d, + 0xf5, 0xfc, 0xef, 0xb0, 0xa9, 0x6f, 0xc3, 0xdc, 0xff, 0xf9, 0x6d, 0xf8, 0x6f, 0x67, 0xd2, 0x90, + 0x1e, 0x63, 0xf0, 0x10, 0x0f, 0x84, 0x1f, 0x2a, 0x5b, 0xb2, 0x29, 0x0d, 0x3a, 0xda, 0xec, 0x77, + 0x6c, 0x3b, 0xc4, 0xc7, 0x71, 0x5b, 0xcb, 0xd9, 0xb6, 0x86, 0x45, 0xf0, 0x5e, 0xf2, 0x48, 0xa7, + 0xa8, 0xcc, 0xf4, 0x33, 0xde, 0x9c, 0x87, 0x42, 0x6b, 0x17, 0x75, 0xb5, 0x58, 0x49, 0xdb, 0xbb, + 0xea, 0xd0, 0x82, 0x09, 0xbc, 0x79, 0xa5, 0xfb, 0xf3, 0xa1, 0x40, 0x5d, 0x51, 0x03, 0x8d, 0x80, + 0xb8, 0x53, 0x35, 0xa2, 0x25, 0x53, 0x6a, 0xa7, 0x6a, 0x84, 0xad, 0x96, 0x89, 0x20, 0x38, 0xf3, + 0xda, 0x3d, 0x5a, 0x36, 0x3d, 0x3e, 0x96, 0x71, 0xb4, 0xc3, 0xec, 0xfa, 0x5e, 0xa0, 0x3f, 0x02, + 0x4a, 0x2c, 0x16, 0xdd, 0x6d, 0x28, 0x27, 0x45, 0x81, 0xdd, 0xbb, 0xd5, 0xd1, 0x49, 0xaf, 0xb2, + 0x85, 0x56, 0x27, 0xae, 0xe7, 0x85, 0xe9, 0x7a, 0xce, 0xa5, 0xea, 0x79, 0x0b, 0xaa, 0x13, 0xe5, + 0x81, 0x20, 0x26, 0xae, 0xa4, 0x35, 0xa4, 0x9f, 0x51, 0xd7, 0x14, 0x81, 0xf9, 0xcc, 0xad, 0x32, + 0xfd, 0xec, 0xae, 0x43, 0x75, 0xa2, 0x30, 0x66, 0x35, 0x35, 0xf7, 0x19, 0x54, 0x4f, 0x94, 0xa7, + 0x86, 0x73, 0xfe, 0x97, 0xf8, 0x8f, 0x03, 0xcb, 0x31, 0xc6, 0xf6, 0x98, 0xdf, 0x42, 0xe9, 0x92, + 0x47, 0x8a, 0x5f, 0x27, 0x8d, 0x9c, 0x36, 0xfa, 0xe2, 0x6c, 0xd4, 0x88, 0xff, 0x19, 0xc1, 0x3a, + 0xf8, 0xa0, 0x11, 0x2c, 0x41, 0x92, 0xaf, 0xa1, 0x24, 0xb5, 0x1d, 0x1e, 0xdf, 0xe5, 0x9f, 0x64, + 0xb1, 0xec, 0x7a, 0x09, 0x9e, 0x6c, 0x40, 0x3e, 0x10, 0x5d, 0xa9, 0xf7, 0xbd, 0xb2, 0xf9, 0x24, + 0x8b, 0xf7, 0x56, 0x74, 0x99, 0x06, 0x92, 0xd7, 0x50, 0xba, 0xf2, 0xa2, 0xd0, 0x0f, 0xbb, 0xf1, + 0xe7, 0xf1, 0xd3, 0x2c, 0xd2, 0x77, 0x06, 0xc7, 0x12, 0x82, 0x5b, 0xc5, 0xe3, 0x72, 0x2e, 0x6c, + 0x4e, 0xdc, 0xef, 0xb1, 0x6a, 0x51, 0xb4, 0xe1, 0x1f, 0x40, 0xd5, 0x54, 0xfe, 0x07, 0x1e, 0x49, + 0x9c, 0x8c, 0x9c, 0x79, 0xa7, 0x73, 0x27, 0x0d, 0x65, 0x93, 0x4c, 0xf7, 0x07, 0x7b, 0x59, 0xc4, + 0x0a, 0xac, 0xa5, 0x81, 0xd7, 0xee, 0x79, 0xdd, 0x78, 0x9f, 0x62, 0x11, 0xdf, 0x5c, 0xda, 0xf5, + 0xcc, 0x01, 0x8d, 0x45, 0xac, 0xcd, 0x88, 0x5f, 0xfa, 0x72, 0x3c, 0xa4, 0x25, 0xf2, 0xe6, 0xbf, + 0x8a, 0x00, 0xcd, 0xc4, 0x1f, 0xf2, 0x0e, 0x1b, 0xe0, 0xb9, 0x20, 0x99, 0xad, 0x2f, 0x89, 0xba, + 0xe6, 0xce, 0x83, 0xd8, 0x4c, 0x1c, 0xc3, 0xa2, 0x76, 0x9f, 0xcc, 0x9b, 0x09, 0x62, 0x83, 0xeb, + 0x73, 0x31, 0xd6, 0xe2, 0xf7, 0x38, 0xd2, 0x98, 0xa9, 0x9c, 0xbc, 0xb8, 0x6d, 0x6a, 0x37, 0x76, + 0x5f, 0xde, 0x6d, 0xb8, 0x27, 0xdf, 0x42, 0xc1, 0x34, 0x1f, 0xf2, 0xcb, 0xd9, 0x0c, 0x7b, 0x50, + 0x6a, 0xf3, 0x5f, 0xd7, 0x9d, 0x4f, 0x1d, 0xf2, 0x03, 0xc0, 0xf8, 0xb2, 0x26, 0x19, 0x7f, 0x1e, + 0x4c, 0xdd, 0xfa, 0xb5, 0xfa, 0xed, 0x40, 0xeb, 0xec, 0x7b, 0x28, 0x98, 0x43, 0x40, 0xb2, 0x9a, + 0x7e, 0xfa, 0xd8, 0xd6, 0x9e, 0xcf, 0x07, 0x19, 0xa3, 0x9f, 0x3a, 0xe4, 0x03, 0xb6, 0x2a, 0x3d, + 0xdf, 0x91, 0xe7, 0x59, 0xfb, 0x9b, 0x1e, 0x11, 0x6b, 0x2f, 0x6e, 0x41, 0x59, 0x77, 0xdf, 0x41, + 0x1e, 0xa7, 0x90, 0xac, 0xba, 0x4a, 0x8d, 0x30, 0x59, 0x75, 0x35, 0x31, 0xc4, 0x30, 0x7b, 0x73, + 0x11, 0x77, 0xce, 0x68, 0x12, 0x6f, 0xd7, 0xfa, 0x1c, 0x4c, 0x6c, 0xb1, 0xee, 0x90, 0x0b, 0xa8, + 0x4e, 0xfc, 0xbf, 0x4a, 0x7e, 0x9d, 0xed, 0xc8, 0xcd, 0xbf, 0x6b, 0x6b, 0xaf, 0xee, 0x84, 0xb5, + 0xde, 0xab, 0xf4, 0xc0, 0x67, 0x5f, 0x93, 0xc6, 0x6d, 0x5b, 0x3f, 0xf9, 0x5f, 0x69, 0x6d, 0xe3, + 0xce, 0x78, 0xb3, 0xea, 0x4e, 0xfe, 0x0f, 0x0b, 0x83, 0xb3, 0xb3, 0x82, 0xfe, 0xdb, 0xf9, 0xf3, + 0xff, 0x05, 0x00, 0x00, 0xff, 0xff, 0x43, 0xa6, 0xfc, 0x5a, 0xdd, 0x16, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/controller/pb/controller.proto b/controller/pb/controller.proto index b141dc6e..ddab5956 100644 --- a/controller/pb/controller.proto +++ b/controller/pb/controller.proto @@ -76,11 +76,10 @@ message BuildOptions { UlimitOpt Ulimits = 22; string Builder = 23; - string MetadataFile = 24; - bool NoCache = 25; - bool Pull = 26; - bool ExportPush = 27; - bool ExportLoad = 28; + bool NoCache = 24; + bool Pull = 25; + bool ExportPush = 26; + bool ExportLoad = 27; } message FinalizeRequest {