From 68dd4c9a66de973d2bf3d9f158ae06ab68989f18 Mon Sep 17 00:00:00 2001 From: Matt Butcher Date: Wed, 28 Sep 2016 16:13:38 -0600 Subject: [PATCH] fix(proto): remove unused fields Some fields were introduced to Chart metadata after Alpha.4, but are not going to be used ever. So we made the decision to remove them before we get stuck with ugliness. This should not break compatibility, since these fields were not used. --- _proto/hapi/chart/metadata.proto | 15 --- pkg/chartutil/chartfile_test.go | 22 ---- pkg/chartutil/testdata/chartfiletest.yaml | 7 - pkg/chartutil/testdata/frobnitz-1.2.3.tgz | Bin 4025 -> 4017 bytes pkg/chartutil/testdata/frobnitz/Chart.yaml | 7 - .../frobnitz/charts/mariner-4.3.2.tgz | Bin 1029 -> 1025 bytes .../mariner/charts/albatross-0.1.0.tgz | Bin 347 -> 347 bytes pkg/proto/hapi/chart/chart.pb.go | 34 +++-- pkg/proto/hapi/chart/config.pb.go | 12 +- pkg/proto/hapi/chart/metadata.pb.go | 72 ++++------- pkg/proto/hapi/chart/template.pb.go | 8 +- pkg/proto/hapi/release/hook.pb.go | 43 +++--- pkg/proto/hapi/release/info.pb.go | 21 ++- pkg/proto/hapi/release/release.pb.go | 34 ++--- pkg/proto/hapi/release/status.pb.go | 36 +++--- pkg/proto/hapi/services/tiller.pb.go | 122 +++++++++--------- pkg/proto/hapi/version/version.pb.go | 15 +-- 17 files changed, 182 insertions(+), 266 deletions(-) diff --git a/_proto/hapi/chart/metadata.proto b/_proto/hapi/chart/metadata.proto index 979702df0..40c8b40dc 100644 --- a/_proto/hapi/chart/metadata.proto +++ b/_proto/hapi/chart/metadata.proto @@ -27,19 +27,6 @@ message Maintainer { string email = 2; } -// Dependency describes this chart's dependency on another chart. -message Dependency { - // Name is the name of the dependency, e.g. 'nginx' - string name = 1; - - // Repository is the repository URL. Appending '/index.yaml' to this should - // return the repo index. - string repository = 2; - - // Version is a SemVer 2 version. - string version = 3; -} - // Metadata for a Chart file. This models the structure of a Chart.yaml file. // // Spec: https://k8s.io/helm/blob/master/docs/design/chart_format.md#the-chart-file @@ -74,6 +61,4 @@ message Metadata { // The URL to an icon file. string icon = 9; - - repeated Dependency dependencies = 10; } diff --git a/pkg/chartutil/chartfile_test.go b/pkg/chartutil/chartfile_test.go index e24f11761..1b8e800f0 100644 --- a/pkg/chartutil/chartfile_test.go +++ b/pkg/chartutil/chartfile_test.go @@ -89,26 +89,4 @@ func verifyChartfile(t *testing.T, f *chart.Metadata) { t.Errorf("Expected %q, got %q", kk[i], k) } } - - if len(f.Dependencies) != 2 { - t.Fatalf("Expected 2 dependencies, got %d", len(f.Dependencies)) - } - - deps := []*chart.Dependency{ - {Name: "alpine", Version: "0.1.0", Repository: "https://example.com/charts"}, - {Name: "mariner", Version: "4.3.2", Repository: "https://example.com/charts"}, - } - for i, tt := range deps { - c := f.Dependencies[i] - if c.Name != tt.Name { - t.Errorf("Expected name %q, got %q", tt.Name, c.Name) - } - if c.Version != tt.Version { - t.Errorf("Expected version %q, got %q", tt.Version, c.Version) - } - if c.Repository != tt.Repository { - t.Errorf("Expected repository %q, got %q", tt.Repository, c.Repository) - } - } - } diff --git a/pkg/chartutil/testdata/chartfiletest.yaml b/pkg/chartutil/testdata/chartfiletest.yaml index 325fb27e2..b665c61be 100644 --- a/pkg/chartutil/testdata/chartfiletest.yaml +++ b/pkg/chartutil/testdata/chartfiletest.yaml @@ -14,10 +14,3 @@ sources: - https://example.com/foo/bar home: http://example.com icon: https://example.com/64x64.png -dependencies: - - name: alpine - version: "0.1.0" - repository: https://example.com/charts - - name: mariner - version: "4.3.2" - repository: https://example.com/charts diff --git a/pkg/chartutil/testdata/frobnitz-1.2.3.tgz b/pkg/chartutil/testdata/frobnitz-1.2.3.tgz index e230f5b4018e6c44c5433902bda0392f641a13a0..49ec9ca8789a18c5aa67ef1a0bcc34a924f9f134 100644 GIT binary patch literal 4017 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 literal 4025 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 diff --git a/pkg/chartutil/testdata/frobnitz/Chart.yaml b/pkg/chartutil/testdata/frobnitz/Chart.yaml index 325fb27e2..b665c61be 100644 --- a/pkg/chartutil/testdata/frobnitz/Chart.yaml +++ b/pkg/chartutil/testdata/frobnitz/Chart.yaml @@ -14,10 +14,3 @@ sources: - https://example.com/foo/bar home: http://example.com icon: https://example.com/64x64.png -dependencies: - - name: alpine - version: "0.1.0" - repository: https://example.com/charts - - name: mariner - version: "4.3.2" - repository: https://example.com/charts diff --git a/pkg/chartutil/testdata/frobnitz/charts/mariner-4.3.2.tgz b/pkg/chartutil/testdata/frobnitz/charts/mariner-4.3.2.tgz index c2a5c2d612cfc1bed6b4785790a20cff960859ab..4928e7e7af41bd33be43a458f4c9c3a7221fc595 100644 GIT binary patch literal 1025 zcmV+c1pfOUiwFQ!I_y^f1MQc4Y!pQt$1j*vT_1mmq6v0Vv`Rzw_Iaz@V8t3GsR{`g zLeQjhcXM}J_i>$>E1a*!#1gQn#KtBjK>G&>J_4zr#dr`Q8kG7#L5!gIim@ru7$r2u z;?>=~N6JGh@$S$tpSxuCZf9p^_xt;Of3p_EhK+DAP(}nn&{P%pZ7A0Yl9Frl08!F3 zQI-`+lYk&9k|+d#TFylkND&ILyA%sj8cxwj0^xJ^bGyZ2e=|=0K8o%C1S_w9Qvzbj zr=ew*eh&9}gcRkk^%q6W(_d0#O;c3G)juREasUXWU&`5B%r<%A`DH z;QakxRWyb9e@8^l^}|e$c`dAVj!Y(0MvtA zMSx})QtS}o{s#a?NrxEJ!D$^NC`}SQ7(^?el{66_ajf9!F5+KOtPnK_6e_v%=a|a>B{k&huPU-CE1IXjB1p{t zE5R&qH;TcONkJ|G{EdD-D0prbSe!5jaK8{Nop=9z_3l~kL7^y!8Lsyii$UC=iB#CH z1=O+3dK21l|A_M@h?o!~zp&)u3?!j}37`%Ld&h*h;~BR5Gwq}>C|Z#>f36zU_?NL7 zQhLtzf47OCgkwhC0HDcIxWQEUFUaEQ{x6B{hvk1In4IC0m1n7Tad5`_e{tJi@9)}q z8h`ZP&oNd0tFr9B|H*=^ijwN)zt^ATe4gj)cbUxTSB^r#p{rZtGpWXUFItN29Ce zH}89Pi~h#*U5g&uyJG7Vb&L1B-12VcoM#$pH?KYL(jyx#H|n}qzjo~VZG+#1-~P!*WIzrut)Z3cy9YnII`sN`4=BTAsP&sQ z@>%#*N vTXSA%nEW_*J7d#=moBXf+6ZtiaDKCU}+h4a;zSOPW`ZERu!w14pO5lBTX#)Alf@Tdm0QUtBU>!D#jcggJC&hG5)cYfdR+*!~yY~%(5lZYS)x~c-d)pD&MDY-Te5G7sH zG+7ly83>{xiDCe#lX+1EQkX!OUWx??38zRTf!y=ELBz9#l9WJ1yZPgUu8Tw zF>vAjuPVCA{J$I&^mkE9%5af|Y=TQ20~7kcD&_Q7RY}oxs=uzu67&CZ5JgF3N0A*d z5Dsww)Ph_hKr;-9>tIa31HeT|2OGq3(;<)`B#A@8AX*Nsq>1>5V+GH45&w{4LR1O7 z$O|kQ{+kq(BZ!I#X|zv51pGt)AHV*SMCSixp`d>&G*hVL&Yxo<|CdzF*I!j+RaQLz z*A#*Ie_5Cb?m;n_G6~4d0DqyMpAMzm1m`PY4E4t|HWm0 zt-osLN&L}&KgLA$ugbDl|GFrPv?tAfiS}pz|CNQxjw=HCbKflvTsHj4iRL|Edc{{W z25UA<`|yeC>|Gz+JHH~s9XYq~{IHZl-d27$gk9M5g+|s>j_x9o6 zPefPFYdrYume89obS!*q-}0?j)hycma?{@S+0WEfZ(eiwrAO9ZY1DMCdhO&l+xou_ zzw@!R^U3(yQ=t_jtA&Pa$ML6cZ__$6Bl_X71$XaQSAQto+s1QS+OM0{b_*Hk-8$#_ z#%wxUcjVKqYcgQzvDO>6+7b-w!wT|G2DT>FBPWw+B|N>+FC3TJ4Sf4=RIr zp!v(y@)}gX6a3os^O?$pJsYlm{Fm&ZI|gr_dU~+FJMj6~cH#R<>-A;TGlpMvo^rko z;`TERd~dAjq4;OBZVFT$ZR`5&=;-{RwF|}^c%XjjPt!wn?{4cn)!l;jy*LyeZa8@T z7svV@wr0OlH~w+%az>^EFJDp>>-Q*E-eKu diff --git a/pkg/proto/hapi/chart/chart.pb.go b/pkg/proto/hapi/chart/chart.pb.go index 10a525cfd..db1d5ef97 100644 --- a/pkg/proto/hapi/chart/chart.pb.go +++ b/pkg/proto/hapi/chart/chart.pb.go @@ -16,7 +16,6 @@ It has these top-level messages: Config Value Maintainer - Dependency Metadata Template */ @@ -101,21 +100,20 @@ func init() { func init() { proto.RegisterFile("hapi/chart/chart.proto", fileDescriptor0) } var fileDescriptor0 = []byte{ - // 242 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x6c, 0x90, 0xb1, 0x4e, 0xc3, 0x30, - 0x10, 0x86, 0x15, 0x4a, 0x0a, 0x1c, 0x2c, 0x58, 0x08, 0x4c, 0xa7, 0x8a, 0x09, 0x75, 0x70, 0x50, - 0x11, 0x0f, 0x00, 0xcc, 0x2c, 0x16, 0x13, 0xdb, 0xb5, 0xb9, 0xa4, 0x91, 0x52, 0x3b, 0xaa, 0x5d, - 0xa4, 0xbe, 0x3b, 0x03, 0xea, 0xd9, 0xa6, 0x09, 0xea, 0x12, 0x29, 0xf7, 0x7d, 0xff, 0xe5, 0xbf, - 0xc0, 0xed, 0x0a, 0xbb, 0xa6, 0x58, 0xae, 0x70, 0xe3, 0xc3, 0x53, 0x75, 0x1b, 0xeb, 0xad, 0x80, - 0xfd, 0x5c, 0xf1, 0x64, 0x72, 0xd7, 0x77, 0xac, 0xa9, 0x9a, 0x3a, 0x48, 0x93, 0xfb, 0x1e, 0x58, - 0x93, 0xc7, 0x12, 0x3d, 0x1e, 0x41, 0x9e, 0xd6, 0x5d, 0x8b, 0x9e, 0x12, 0xaa, 0xad, 0xad, 0x5b, - 0x2a, 0xf8, 0x6d, 0xb1, 0xad, 0x0a, 0x34, 0xbb, 0x80, 0x1e, 0x7e, 0x32, 0xc8, 0xdf, 0xf7, 0x19, - 0xf1, 0x04, 0xe7, 0x69, 0xa3, 0xcc, 0xa6, 0xd9, 0xe3, 0xe5, 0xfc, 0x46, 0x1d, 0x2a, 0xa9, 0x8f, - 0xc8, 0xf4, 0x9f, 0x25, 0xe6, 0x70, 0x91, 0x3e, 0xe4, 0xe4, 0xc9, 0x74, 0xf4, 0x3f, 0xf2, 0x19, - 0xa1, 0x3e, 0x68, 0xe2, 0x05, 0xae, 0x4a, 0xea, 0xc8, 0x94, 0x64, 0x96, 0x0d, 0x39, 0x39, 0xe2, - 0xd8, 0x75, 0x3f, 0xc6, 0x75, 0xf4, 0x40, 0x13, 0x33, 0x18, 0x7f, 0x63, 0xbb, 0x25, 0x27, 0x4f, - 0xb9, 0x9a, 0x18, 0x04, 0xf8, 0x0f, 0xe9, 0x68, 0x88, 0x19, 0xe4, 0x55, 0xd3, 0x92, 0x93, 0x79, - 0xac, 0x14, 0xae, 0x57, 0xe9, 0x7a, 0xf5, 0x6a, 0x76, 0x3a, 0x28, 0x6f, 0x67, 0x5f, 0x39, 0xef, - 0x58, 0x8c, 0x99, 0x3e, 0xff, 0x06, 0x00, 0x00, 0xff, 0xff, 0xe9, 0x70, 0x34, 0x75, 0x9e, 0x01, - 0x00, 0x00, + // 239 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xe2, 0x12, 0xcb, 0x48, 0x2c, 0xc8, + 0xd4, 0x4f, 0xce, 0x48, 0x2c, 0x2a, 0x81, 0x90, 0x7a, 0x05, 0x45, 0xf9, 0x25, 0xf9, 0x42, 0x5c, + 0x20, 0x71, 0x3d, 0xb0, 0x88, 0x94, 0x38, 0xb2, 0x9a, 0xfc, 0xbc, 0xb4, 0xcc, 0x74, 0x88, 0x22, + 0x29, 0x49, 0x24, 0x89, 0xdc, 0xd4, 0x92, 0xc4, 0x94, 0xc4, 0x92, 0x44, 0x2c, 0x52, 0x25, 0xa9, + 0xb9, 0x05, 0x39, 0x89, 0x25, 0xa9, 0x30, 0xa9, 0xf4, 0xfc, 0xfc, 0xf4, 0x9c, 0x54, 0x7d, 0x30, + 0x2f, 0xa9, 0x34, 0x4d, 0x3f, 0x31, 0xaf, 0x12, 0x22, 0xa5, 0xf4, 0x87, 0x91, 0x8b, 0xd5, 0x19, + 0xa4, 0x47, 0xc8, 0x80, 0x8b, 0x03, 0x66, 0xa2, 0x04, 0xa3, 0x02, 0xa3, 0x06, 0xb7, 0x91, 0x88, + 0x1e, 0xc2, 0x49, 0x7a, 0xbe, 0x50, 0xb9, 0x20, 0xb8, 0x2a, 0x21, 0x23, 0x2e, 0x4e, 0x98, 0x45, + 0xc5, 0x12, 0x4c, 0x0a, 0xcc, 0xe8, 0x5a, 0x42, 0xa0, 0x92, 0x41, 0x08, 0x65, 0x42, 0xa6, 0x5c, + 0x3c, 0x29, 0xa9, 0x05, 0xa9, 0x79, 0x29, 0xa9, 0x79, 0xc9, 0x99, 0x40, 0x6d, 0xcc, 0x60, 0x6d, + 0x82, 0xc8, 0xda, 0xc0, 0xce, 0x09, 0x42, 0x51, 0x26, 0xa4, 0xc5, 0xc5, 0x56, 0x96, 0x98, 0x53, + 0x0a, 0xd4, 0xc0, 0x02, 0x76, 0x9a, 0x10, 0x8a, 0x06, 0x70, 0x08, 0x05, 0x41, 0x55, 0x00, 0xd5, + 0xb2, 0xa6, 0x65, 0xe6, 0x00, 0x95, 0xb2, 0x42, 0x9d, 0x04, 0xf1, 0xbd, 0x1e, 0xcc, 0xf7, 0x7a, + 0x8e, 0x79, 0x95, 0x41, 0x10, 0x25, 0x4e, 0xec, 0x51, 0xac, 0x60, 0x33, 0x92, 0xd8, 0xc0, 0xb2, + 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0xe9, 0x70, 0x34, 0x75, 0x9e, 0x01, 0x00, 0x00, } diff --git a/pkg/proto/hapi/chart/config.pb.go b/pkg/proto/hapi/chart/config.pb.go index a7b61885a..f1471405d 100644 --- a/pkg/proto/hapi/chart/config.pb.go +++ b/pkg/proto/hapi/chart/config.pb.go @@ -49,7 +49,7 @@ func init() { func init() { proto.RegisterFile("hapi/chart/config.proto", fileDescriptor1) } var fileDescriptor1 = []byte{ - // 182 bytes of a gzipped FileDescriptorProto + // 179 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xe2, 0x12, 0xcf, 0x48, 0x2c, 0xc8, 0xd4, 0x4f, 0xce, 0x48, 0x2c, 0x2a, 0xd1, 0x4f, 0xce, 0xcf, 0x4b, 0xcb, 0x4c, 0xd7, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x02, 0x49, 0xe8, 0x81, 0x25, 0x94, 0x16, 0x30, 0x72, 0xb1, 0x39, @@ -57,9 +57,9 @@ var fileDescriptor1 = []byte{ 0x40, 0x4c, 0x21, 0x33, 0x2e, 0xb6, 0xb2, 0xc4, 0x9c, 0xd2, 0xd4, 0x62, 0x09, 0x26, 0x05, 0x66, 0x0d, 0x6e, 0x23, 0x39, 0x3d, 0x84, 0x4e, 0x3d, 0x88, 0x2e, 0xbd, 0x30, 0xb0, 0x02, 0xd7, 0xbc, 0x92, 0xa2, 0xca, 0x20, 0xa8, 0x6a, 0x29, 0x1f, 0x2e, 0x6e, 0x24, 0x61, 0x90, 0xc1, 0xd9, 0xa9, - 0x95, 0x30, 0x83, 0xb3, 0x53, 0x2b, 0x85, 0xd4, 0xb9, 0x58, 0xc1, 0x4a, 0x25, 0x98, 0x14, 0x18, - 0x35, 0xb8, 0x8d, 0x04, 0x91, 0xcd, 0x05, 0xeb, 0x0c, 0x82, 0xc8, 0x5b, 0x31, 0x59, 0x30, 0x2a, - 0xc9, 0x72, 0xb1, 0x82, 0xc5, 0x84, 0x44, 0x60, 0xba, 0x20, 0x26, 0x41, 0x38, 0x4e, 0xec, 0x51, - 0xac, 0x60, 0x8d, 0x49, 0x6c, 0x60, 0xdf, 0x19, 0x03, 0x02, 0x00, 0x00, 0xff, 0xff, 0xe1, 0x12, - 0x60, 0xda, 0xf8, 0x00, 0x00, 0x00, + 0x95, 0x30, 0x83, 0x81, 0x4c, 0x21, 0x75, 0x2e, 0x56, 0xb0, 0x52, 0xa0, 0xb9, 0x8c, 0x40, 0x73, + 0x05, 0x91, 0xcd, 0x05, 0xeb, 0x0c, 0x82, 0xc8, 0x5b, 0x31, 0x59, 0x30, 0x2a, 0xc9, 0x72, 0xb1, + 0x82, 0xc5, 0x84, 0x44, 0x60, 0xba, 0x20, 0x26, 0x41, 0x38, 0x4e, 0xec, 0x51, 0xac, 0x60, 0x8d, + 0x49, 0x6c, 0x60, 0xdf, 0x19, 0x03, 0x02, 0x00, 0x00, 0xff, 0xff, 0xe1, 0x12, 0x60, 0xda, 0xf8, + 0x00, 0x00, 0x00, } diff --git a/pkg/proto/hapi/chart/metadata.pb.go b/pkg/proto/hapi/chart/metadata.pb.go index f049137a5..8cd1ac1f1 100644 --- a/pkg/proto/hapi/chart/metadata.pb.go +++ b/pkg/proto/hapi/chart/metadata.pb.go @@ -32,7 +32,7 @@ var Metadata_Engine_value = map[string]int32{ func (x Metadata_Engine) String() string { return proto.EnumName(Metadata_Engine_name, int32(x)) } -func (Metadata_Engine) EnumDescriptor() ([]byte, []int) { return fileDescriptor2, []int{2, 0} } +func (Metadata_Engine) EnumDescriptor() ([]byte, []int) { return fileDescriptor2, []int{1, 0} } // Maintainer describes a Chart maintainer. type Maintainer struct { @@ -47,22 +47,6 @@ func (m *Maintainer) String() string { return proto.CompactTextString func (*Maintainer) ProtoMessage() {} func (*Maintainer) Descriptor() ([]byte, []int) { return fileDescriptor2, []int{0} } -// Dependency describes this chart's dependency on another chart. -type Dependency struct { - // Name is the name of the dependency, e.g. 'nginx' - Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"` - // Repository is the repository URL. Appending '/index.yaml' to this should - // return the repo index. - Repository string `protobuf:"bytes,2,opt,name=repository" json:"repository,omitempty"` - // Version is a SemVer 2 version. - Version string `protobuf:"bytes,3,opt,name=version" json:"version,omitempty"` -} - -func (m *Dependency) Reset() { *m = Dependency{} } -func (m *Dependency) String() string { return proto.CompactTextString(m) } -func (*Dependency) ProtoMessage() {} -func (*Dependency) Descriptor() ([]byte, []int) { return fileDescriptor2, []int{1} } - // Metadata for a Chart file. This models the structure of a Chart.yaml file. // // Spec: https://k8s.io/helm/blob/master/docs/design/chart_format.md#the-chart-file @@ -84,14 +68,13 @@ type Metadata struct { // The name of the template engine to use. Defaults to 'gotpl'. Engine string `protobuf:"bytes,8,opt,name=engine" json:"engine,omitempty"` // The URL to an icon file. - Icon string `protobuf:"bytes,9,opt,name=icon" json:"icon,omitempty"` - Dependencies []*Dependency `protobuf:"bytes,10,rep,name=dependencies" json:"dependencies,omitempty"` + Icon string `protobuf:"bytes,9,opt,name=icon" json:"icon,omitempty"` } func (m *Metadata) Reset() { *m = Metadata{} } func (m *Metadata) String() string { return proto.CompactTextString(m) } func (*Metadata) ProtoMessage() {} -func (*Metadata) Descriptor() ([]byte, []int) { return fileDescriptor2, []int{2} } +func (*Metadata) Descriptor() ([]byte, []int) { return fileDescriptor2, []int{1} } func (m *Metadata) GetMaintainers() []*Maintainer { if m != nil { @@ -100,16 +83,8 @@ func (m *Metadata) GetMaintainers() []*Maintainer { return nil } -func (m *Metadata) GetDependencies() []*Dependency { - if m != nil { - return m.Dependencies - } - return nil -} - func init() { proto.RegisterType((*Maintainer)(nil), "hapi.chart.Maintainer") - proto.RegisterType((*Dependency)(nil), "hapi.chart.Dependency") proto.RegisterType((*Metadata)(nil), "hapi.chart.Metadata") proto.RegisterEnum("hapi.chart.Metadata_Engine", Metadata_Engine_name, Metadata_Engine_value) } @@ -117,26 +92,23 @@ func init() { func init() { proto.RegisterFile("hapi/chart/metadata.proto", fileDescriptor2) } var fileDescriptor2 = []byte{ - // 327 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x6c, 0x52, 0x41, 0x4b, 0xf3, 0x40, - 0x10, 0xfd, 0xda, 0x34, 0x49, 0x3b, 0xf9, 0x0e, 0x65, 0x90, 0xb2, 0x7a, 0x90, 0x90, 0x53, 0x4f, - 0x29, 0x28, 0x88, 0x78, 0x14, 0xc5, 0x83, 0xb6, 0x95, 0xa2, 0x08, 0xbd, 0xad, 0xc9, 0x60, 0x17, - 0xcd, 0x6e, 0xd8, 0x5d, 0x95, 0xfe, 0x63, 0x7f, 0x86, 0x64, 0x9b, 0x36, 0x29, 0xf6, 0x36, 0x6f, - 0xde, 0xcc, 0x7b, 0x99, 0x97, 0x85, 0xe3, 0x15, 0x2f, 0xc5, 0x24, 0x5b, 0x71, 0x6d, 0x27, 0x05, - 0x59, 0x9e, 0x73, 0xcb, 0xd3, 0x52, 0x2b, 0xab, 0x10, 0x2a, 0x2a, 0x75, 0x54, 0x72, 0x01, 0x30, - 0xe5, 0x42, 0x5a, 0x2e, 0x24, 0x69, 0x44, 0xe8, 0x49, 0x5e, 0x10, 0xeb, 0xc4, 0x9d, 0xf1, 0x60, - 0xe1, 0x6a, 0x3c, 0x02, 0x9f, 0x0a, 0x2e, 0x3e, 0x58, 0xd7, 0x35, 0x37, 0x20, 0x59, 0x02, 0xdc, - 0x50, 0x49, 0x32, 0x27, 0x99, 0xad, 0x0f, 0xee, 0x9d, 0x02, 0x68, 0x2a, 0x95, 0x11, 0x56, 0xe9, - 0x75, 0xbd, 0xdc, 0xea, 0x20, 0x83, 0xf0, 0x8b, 0xb4, 0x11, 0x4a, 0x32, 0xcf, 0x91, 0x5b, 0x98, - 0xfc, 0x74, 0xa1, 0x3f, 0xad, 0x3f, 0xf9, 0xa0, 0x34, 0x42, 0x6f, 0xa5, 0x0a, 0xaa, 0x45, 0x5d, - 0x5d, 0xc9, 0x19, 0xf5, 0xa9, 0x33, 0x32, 0xcc, 0x8b, 0xbd, 0x4a, 0xae, 0x86, 0x6d, 0xa3, 0xde, - 0x9e, 0x11, 0xc6, 0x10, 0xe5, 0x64, 0x32, 0x2d, 0x4a, 0x5b, 0xb1, 0xbe, 0x63, 0xdb, 0x2d, 0x3c, - 0x81, 0xfe, 0x3b, 0xad, 0xbf, 0x95, 0xce, 0x0d, 0x0b, 0x9c, 0xec, 0x0e, 0xe3, 0x25, 0x44, 0xc5, - 0x2e, 0x3a, 0xc3, 0xc2, 0xd8, 0x1b, 0x47, 0x67, 0xa3, 0xb4, 0x09, 0x37, 0x6d, 0x92, 0x5d, 0xb4, - 0x47, 0x71, 0x04, 0x01, 0xc9, 0x37, 0x21, 0x89, 0xf5, 0x9d, 0x65, 0x8d, 0xaa, 0xbb, 0x44, 0xa6, - 0x24, 0x1b, 0x6c, 0xee, 0xaa, 0x6a, 0xbc, 0x82, 0xff, 0xf9, 0x36, 0x68, 0x41, 0x86, 0xc1, 0x5f, - 0x9b, 0xe6, 0x47, 0x2c, 0xf6, 0x66, 0x93, 0x18, 0x82, 0xdb, 0x8d, 0x72, 0x04, 0xe1, 0xf3, 0xec, - 0x7e, 0x36, 0x7f, 0x99, 0x0d, 0xff, 0xe1, 0x00, 0xfc, 0xbb, 0xf9, 0xd3, 0xe3, 0xc3, 0xb0, 0x73, - 0x1d, 0x2e, 0x7d, 0xa7, 0xf1, 0x1a, 0xb8, 0xa7, 0x71, 0xfe, 0x1b, 0x00, 0x00, 0xff, 0xff, 0xb4, - 0xec, 0x4d, 0xaf, 0x37, 0x02, 0x00, 0x00, + // 275 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x6c, 0x91, 0x4b, 0x4b, 0xc4, 0x30, + 0x14, 0x85, 0x9d, 0x47, 0x5f, 0xb7, 0x9b, 0xe1, 0x22, 0x43, 0x74, 0x55, 0xba, 0x72, 0xd5, 0x01, + 0x05, 0x71, 0x2d, 0x88, 0x0b, 0x9d, 0x8e, 0x0c, 0x8a, 0xe0, 0x2e, 0xb6, 0xc1, 0x06, 0x6d, 0x53, + 0x92, 0xa8, 0xf8, 0x9f, 0xfc, 0x91, 0x26, 0xb7, 0xf3, 0x5a, 0xb8, 0x28, 0x9c, 0x73, 0xbe, 0xde, + 0xdc, 0x9e, 0x06, 0x4e, 0x1a, 0xde, 0xcb, 0x45, 0xd5, 0x70, 0x6d, 0x17, 0xad, 0xb0, 0xbc, 0xe6, + 0x96, 0x17, 0xbd, 0x56, 0x56, 0x21, 0x78, 0x54, 0x10, 0xca, 0x2f, 0x01, 0x96, 0x5c, 0x76, 0xd6, + 0x3d, 0x42, 0x23, 0xc2, 0xb4, 0xe3, 0xad, 0x60, 0xa3, 0x6c, 0x74, 0x96, 0xac, 0x49, 0xe3, 0x31, + 0x04, 0xa2, 0xe5, 0xf2, 0x83, 0x8d, 0x29, 0x1c, 0x4c, 0xfe, 0x3b, 0x86, 0x78, 0xb9, 0x39, 0xf6, + 0xdf, 0x31, 0x97, 0x35, 0xca, 0x65, 0xc3, 0x14, 0x69, 0x64, 0x10, 0x19, 0xf5, 0xa9, 0x2b, 0x61, + 0xd8, 0x24, 0x9b, 0xb8, 0x78, 0x6b, 0x3d, 0xf9, 0x12, 0xda, 0x48, 0xd5, 0xb1, 0x29, 0x0d, 0x6c, + 0x2d, 0x66, 0x90, 0xd6, 0xc2, 0x54, 0x5a, 0xf6, 0xd6, 0xd3, 0x80, 0xe8, 0x61, 0x84, 0xa7, 0x10, + 0xbf, 0x8b, 0x9f, 0x6f, 0xa5, 0x6b, 0xc3, 0x42, 0x3a, 0x76, 0xe7, 0xf1, 0x0a, 0xd2, 0x76, 0x57, + 0xcf, 0xb0, 0xc8, 0xe1, 0xf4, 0x7c, 0x5e, 0xec, 0x7f, 0x40, 0xb1, 0x6f, 0xbf, 0x3e, 0x7c, 0x15, + 0xe7, 0x10, 0x8a, 0xee, 0xcd, 0x69, 0x16, 0xd3, 0xca, 0x8d, 0xf3, 0xbd, 0x64, 0xe5, 0x3e, 0x24, + 0x19, 0x7a, 0x79, 0x9d, 0x67, 0x10, 0xde, 0x0c, 0x34, 0x85, 0xe8, 0xa9, 0xbc, 0x2b, 0x57, 0xcf, + 0xe5, 0xec, 0x08, 0x13, 0x08, 0x6e, 0x57, 0x8f, 0x0f, 0xf7, 0xb3, 0xd1, 0x75, 0xf4, 0x12, 0xd0, + 0xba, 0xd7, 0x90, 0xae, 0xe0, 0xe2, 0x2f, 0x00, 0x00, 0xff, 0xff, 0x72, 0xdf, 0x74, 0xb5, 0x9f, + 0x01, 0x00, 0x00, } diff --git a/pkg/proto/hapi/chart/template.pb.go b/pkg/proto/hapi/chart/template.pb.go index 2bed587b5..aecab641f 100644 --- a/pkg/proto/hapi/chart/template.pb.go +++ b/pkg/proto/hapi/chart/template.pb.go @@ -36,12 +36,12 @@ func init() { func init() { proto.RegisterFile("hapi/chart/template.proto", fileDescriptor3) } var fileDescriptor3 = []byte{ - // 107 bytes of a gzipped FileDescriptorProto + // 106 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xe2, 0x92, 0xcc, 0x48, 0x2c, 0xc8, 0xd4, 0x4f, 0xce, 0x48, 0x2c, 0x2a, 0xd1, 0x2f, 0x49, 0xcd, 0x2d, 0xc8, 0x49, 0x2c, 0x49, 0xd5, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x02, 0x49, 0xe9, 0x81, 0xa5, 0x94, 0x8c, 0xb8, 0x38, 0x42, 0xa0, 0xb2, 0x42, 0x42, 0x5c, 0x2c, 0x79, 0x89, 0xb9, 0xa9, 0x12, 0x8c, 0x0a, 0x8c, 0x1a, - 0x9c, 0x41, 0x60, 0x36, 0x48, 0x2c, 0x25, 0xb1, 0x24, 0x51, 0x82, 0x49, 0x81, 0x51, 0x83, 0x27, - 0x08, 0xcc, 0x76, 0x62, 0x8f, 0x62, 0x05, 0x6b, 0x4e, 0x62, 0x03, 0x9b, 0x67, 0x0c, 0x08, 0x00, - 0x00, 0xff, 0xff, 0x53, 0xee, 0x0e, 0x67, 0x6c, 0x00, 0x00, 0x00, + 0x9c, 0x41, 0x60, 0x36, 0x48, 0x2c, 0x25, 0xb1, 0x24, 0x51, 0x82, 0x09, 0x28, 0xc6, 0x13, 0x04, + 0x66, 0x3b, 0xb1, 0x47, 0xb1, 0x82, 0x35, 0x27, 0xb1, 0x81, 0xcd, 0x33, 0x06, 0x04, 0x00, 0x00, + 0xff, 0xff, 0x53, 0xee, 0x0e, 0x67, 0x6c, 0x00, 0x00, 0x00, } diff --git a/pkg/proto/hapi/release/hook.pb.go b/pkg/proto/hapi/release/hook.pb.go index 57581b14e..0da69d40e 100644 --- a/pkg/proto/hapi/release/hook.pb.go +++ b/pkg/proto/hapi/release/hook.pb.go @@ -112,26 +112,25 @@ func init() { func init() { proto.RegisterFile("hapi/release/hook.proto", fileDescriptor0) } var fileDescriptor0 = []byte{ - // 321 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x4c, 0x8f, 0x4d, 0x6e, 0xea, 0x30, - 0x14, 0x85, 0x5f, 0x20, 0x24, 0x70, 0xe1, 0xd1, 0xd4, 0x93, 0x5a, 0x4c, 0x8a, 0x18, 0x31, 0x72, - 0x2a, 0xaa, 0x2e, 0x00, 0x8a, 0xd5, 0x56, 0x44, 0x01, 0x99, 0xa0, 0x4a, 0x9d, 0x20, 0xa3, 0x1a, - 0x88, 0x20, 0x71, 0x44, 0x4c, 0xd7, 0xd3, 0xf5, 0x75, 0x15, 0x95, 0x9d, 0x1f, 0x75, 0x76, 0xfd, - 0xdd, 0xcf, 0xc7, 0x3e, 0x70, 0x77, 0xe4, 0x59, 0xec, 0x5f, 0xc4, 0x59, 0xf0, 0x5c, 0xf8, 0x47, - 0x29, 0x4f, 0x24, 0xbb, 0x48, 0x25, 0x51, 0x4f, 0x2f, 0x48, 0xb9, 0x18, 0xdc, 0x1f, 0xa4, 0x3c, - 0x9c, 0x85, 0x6f, 0x76, 0xbb, 0xeb, 0xde, 0x57, 0x71, 0x22, 0x72, 0xc5, 0x93, 0xac, 0xd0, 0x47, - 0x3f, 0x0d, 0xb0, 0x5f, 0xa5, 0x3c, 0x21, 0x04, 0x76, 0xca, 0x13, 0x81, 0xad, 0xa1, 0x35, 0xee, - 0x30, 0x33, 0x6b, 0x76, 0x8a, 0xd3, 0x4f, 0xdc, 0x28, 0x98, 0x9e, 0x35, 0xcb, 0xb8, 0x3a, 0xe2, - 0x66, 0xc1, 0xf4, 0x8c, 0x06, 0xd0, 0x4e, 0x78, 0x1a, 0xef, 0x45, 0xae, 0xb0, 0x6d, 0x78, 0x7d, - 0x46, 0x0f, 0xe0, 0x88, 0x2f, 0x91, 0xaa, 0x1c, 0xb7, 0x86, 0xcd, 0x71, 0x7f, 0x82, 0xc9, 0xdf, - 0x0f, 0x12, 0xfd, 0x36, 0xa1, 0x5a, 0x60, 0xa5, 0x87, 0x9e, 0xa0, 0x7d, 0xe6, 0xb9, 0xda, 0x5e, - 0xae, 0x29, 0x76, 0x86, 0xd6, 0xb8, 0x3b, 0x19, 0x90, 0xa2, 0x06, 0xa9, 0x6a, 0x90, 0xa8, 0xaa, - 0xc1, 0x5c, 0xed, 0xb2, 0x6b, 0x3a, 0xfa, 0xb6, 0xa0, 0x65, 0x82, 0x50, 0x17, 0xdc, 0x4d, 0xb8, - 0x08, 0x97, 0xef, 0xa1, 0xf7, 0x0f, 0xdd, 0x40, 0x77, 0xc5, 0xe8, 0xf6, 0x2d, 0x5c, 0x47, 0xd3, - 0x20, 0xf0, 0x2c, 0xe4, 0x41, 0x6f, 0xb5, 0x5c, 0x47, 0x35, 0x69, 0xa0, 0x3e, 0x80, 0x56, 0xe6, - 0x34, 0xa0, 0x11, 0xf5, 0x9a, 0xe6, 0x8a, 0x36, 0x4a, 0x60, 0x57, 0x19, 0x9b, 0xd5, 0x0b, 0x9b, - 0xce, 0xa9, 0xd7, 0xaa, 0x33, 0x2a, 0xe2, 0x18, 0xc2, 0xe8, 0x96, 0x2d, 0x83, 0x60, 0x36, 0x7d, - 0x5e, 0x78, 0x2e, 0xba, 0x85, 0xff, 0xc6, 0xa9, 0x51, 0x7b, 0xd6, 0xf9, 0x70, 0xcb, 0xde, 0x3b, - 0xc7, 0x54, 0x79, 0xfc, 0x0d, 0x00, 0x00, 0xff, 0xff, 0xa4, 0x2e, 0x6f, 0xbd, 0xc8, 0x01, 0x00, - 0x00, + // 320 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x4c, 0x8f, 0xcd, 0x4e, 0xf2, 0x40, + 0x14, 0x86, 0xbf, 0x42, 0x69, 0xe1, 0xc0, 0x87, 0x75, 0x36, 0x4e, 0xd8, 0x48, 0x58, 0xb1, 0x9a, + 0x1a, 0x8c, 0x17, 0x00, 0xd2, 0xa8, 0xa1, 0x29, 0x64, 0x28, 0x31, 0x71, 0x43, 0x86, 0x38, 0x40, + 0x03, 0xed, 0x34, 0x74, 0xf0, 0x7a, 0xbc, 0x3e, 0xaf, 0xc2, 0xce, 0xf4, 0x27, 0xee, 0x4e, 0x9f, + 0xf3, 0x9c, 0xb7, 0xf3, 0xc2, 0xdd, 0x91, 0xa5, 0x91, 0x7b, 0xe1, 0x67, 0xce, 0x32, 0xee, 0x1e, + 0x85, 0x38, 0x91, 0xf4, 0x22, 0xa4, 0x40, 0x3d, 0xb5, 0x20, 0xe5, 0x62, 0x70, 0x7f, 0x10, 0xe2, + 0x70, 0xe6, 0xae, 0xde, 0xed, 0xae, 0x7b, 0x57, 0x46, 0x31, 0xcf, 0x24, 0x8b, 0xd3, 0x42, 0x1f, + 0xfd, 0x34, 0xc0, 0x7c, 0xcd, 0xaf, 0x11, 0x02, 0x33, 0x61, 0x31, 0xc7, 0xc6, 0xd0, 0x18, 0x77, + 0xa8, 0x9e, 0x15, 0x3b, 0x45, 0xc9, 0x27, 0x6e, 0x14, 0x4c, 0xcd, 0x8a, 0xa5, 0x4c, 0x1e, 0x71, + 0xb3, 0x60, 0x6a, 0x46, 0x03, 0x68, 0xc7, 0x2c, 0x89, 0xf6, 0x79, 0x32, 0x36, 0x35, 0xaf, 0xbf, + 0xd1, 0x03, 0x58, 0xfc, 0x8b, 0x27, 0x32, 0xc3, 0xad, 0x61, 0x73, 0xdc, 0x9f, 0x60, 0xf2, 0xf7, + 0x81, 0x44, 0xfd, 0x9b, 0x78, 0x4a, 0xa0, 0xa5, 0x87, 0x9e, 0xa0, 0x7d, 0x66, 0x99, 0xdc, 0x5e, + 0xae, 0x09, 0xb6, 0xf2, 0xb4, 0xee, 0x64, 0x40, 0x8a, 0x1a, 0xa4, 0xaa, 0x41, 0xc2, 0xaa, 0x06, + 0xb5, 0x95, 0x4b, 0xaf, 0xc9, 0xe8, 0xdb, 0x80, 0x96, 0x0e, 0x42, 0x5d, 0xb0, 0x37, 0xc1, 0x22, + 0x58, 0xbe, 0x07, 0xce, 0x3f, 0x74, 0x03, 0xdd, 0x15, 0xf5, 0xb6, 0x6f, 0xc1, 0x3a, 0x9c, 0xfa, + 0xbe, 0x63, 0x20, 0x07, 0x7a, 0xab, 0xe5, 0x3a, 0xac, 0x49, 0x03, 0xf5, 0x01, 0x94, 0x32, 0xf7, + 0x7c, 0x2f, 0xf4, 0x9c, 0xa6, 0x3e, 0x51, 0x46, 0x09, 0xcc, 0x2a, 0x63, 0xb3, 0x7a, 0xa1, 0xd3, + 0xb9, 0xe7, 0xb4, 0xea, 0x8c, 0x8a, 0x58, 0x9a, 0xe4, 0x0a, 0x5d, 0xfa, 0xfe, 0x6c, 0xfa, 0xbc, + 0x70, 0x6c, 0x74, 0x0b, 0xff, 0xb5, 0x53, 0xa3, 0xf6, 0xac, 0xf3, 0x61, 0x97, 0xbd, 0x77, 0x96, + 0xae, 0xf2, 0xf8, 0x1b, 0x00, 0x00, 0xff, 0xff, 0xa4, 0x2e, 0x6f, 0xbd, 0xc8, 0x01, 0x00, 0x00, } diff --git a/pkg/proto/hapi/release/info.pb.go b/pkg/proto/hapi/release/info.pb.go index a63a039cd..d5e843df5 100644 --- a/pkg/proto/hapi/release/info.pb.go +++ b/pkg/proto/hapi/release/info.pb.go @@ -63,19 +63,18 @@ func init() { func init() { proto.RegisterFile("hapi/release/info.proto", fileDescriptor1) } var fileDescriptor1 = []byte{ - // 212 bytes of a gzipped FileDescriptorProto + // 208 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xe2, 0x12, 0xcf, 0x48, 0x2c, 0xc8, 0xd4, 0x2f, 0x4a, 0xcd, 0x49, 0x4d, 0x2c, 0x4e, 0xd5, 0xcf, 0xcc, 0x4b, 0xcb, 0xd7, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x01, 0x49, 0xe8, 0x41, 0x25, 0xa4, 0xe4, 0xd3, 0xf3, 0xf3, 0xd3, 0x73, 0x52, 0xf5, 0xc1, 0x72, 0x49, 0xa5, 0x69, 0xfa, 0x25, 0x99, 0xb9, 0xa9, 0xc5, 0x25, 0x89, - 0xb9, 0x05, 0x10, 0xe5, 0x52, 0x92, 0x28, 0xe6, 0x14, 0x97, 0x24, 0x96, 0x94, 0x16, 0x43, 0xa4, - 0x94, 0xde, 0x31, 0x72, 0xb1, 0x78, 0xe6, 0xa5, 0xe5, 0x0b, 0xe9, 0x70, 0xb1, 0x41, 0x24, 0x24, - 0x18, 0x15, 0x18, 0x35, 0xb8, 0x8d, 0x44, 0xf4, 0x90, 0xed, 0xd0, 0x0b, 0x06, 0xcb, 0x05, 0x41, - 0xd5, 0x08, 0x39, 0x72, 0xf1, 0xa5, 0x65, 0x16, 0x15, 0x97, 0xc4, 0xa7, 0xa4, 0x16, 0xe4, 0xe4, - 0x57, 0xa6, 0xa6, 0x48, 0x30, 0x81, 0x75, 0x49, 0xe9, 0x41, 0xdc, 0xa2, 0x07, 0x73, 0x8b, 0x5e, - 0x08, 0xcc, 0x2d, 0x41, 0xbc, 0x60, 0x1d, 0x2e, 0x50, 0x0d, 0x42, 0xf6, 0x5c, 0xbc, 0x39, 0x89, - 0xc8, 0x26, 0x30, 0x13, 0x34, 0x81, 0x07, 0xa4, 0x01, 0x6e, 0x80, 0x09, 0x17, 0x7b, 0x4a, 0x6a, - 0x4e, 0x6a, 0x49, 0x6a, 0x8a, 0x04, 0x0b, 0x41, 0xad, 0x30, 0xa5, 0x4e, 0x9c, 0x51, 0xec, 0x50, - 0x3f, 0x25, 0xb1, 0x81, 0xd5, 0x19, 0x03, 0x02, 0x00, 0x00, 0xff, 0xff, 0xeb, 0x9d, 0xa1, 0xf8, - 0x67, 0x01, 0x00, 0x00, + 0xb9, 0x05, 0x10, 0xe5, 0x52, 0x92, 0x28, 0xe6, 0x00, 0x65, 0x4a, 0x4a, 0x8b, 0x21, 0x52, 0x4a, + 0xef, 0x18, 0xb9, 0x58, 0x3c, 0x81, 0x06, 0x0b, 0xe9, 0x70, 0xb1, 0x41, 0x24, 0x24, 0x18, 0x15, + 0x18, 0x35, 0xb8, 0x8d, 0x44, 0xf4, 0x90, 0xed, 0xd0, 0x0b, 0x06, 0xcb, 0x05, 0x41, 0xd5, 0x08, + 0x39, 0x72, 0xf1, 0xa5, 0x65, 0x16, 0x15, 0x97, 0xc4, 0xa7, 0xa4, 0x16, 0xe4, 0xe4, 0x57, 0xa6, + 0xa6, 0x48, 0x30, 0x81, 0x75, 0x49, 0xe9, 0x41, 0xdc, 0xa2, 0x07, 0x73, 0x8b, 0x5e, 0x08, 0xcc, + 0x2d, 0x41, 0xbc, 0x60, 0x1d, 0x2e, 0x50, 0x0d, 0x42, 0xf6, 0x5c, 0xbc, 0x39, 0x89, 0xc8, 0x26, + 0x30, 0x13, 0x34, 0x81, 0x07, 0xa4, 0x01, 0x6e, 0x80, 0x09, 0x17, 0x7b, 0x0a, 0xd0, 0x75, 0x25, + 0x40, 0xad, 0x2c, 0x04, 0xb5, 0xc2, 0x94, 0x3a, 0x71, 0x46, 0xb1, 0x43, 0xfd, 0x94, 0xc4, 0x06, + 0x56, 0x67, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0xeb, 0x9d, 0xa1, 0xf8, 0x67, 0x01, 0x00, 0x00, } diff --git a/pkg/proto/hapi/release/release.pb.go b/pkg/proto/hapi/release/release.pb.go index 72255e3e2..561930f1f 100644 --- a/pkg/proto/hapi/release/release.pb.go +++ b/pkg/proto/hapi/release/release.pb.go @@ -77,21 +77,21 @@ func init() { func init() { proto.RegisterFile("hapi/release/release.proto", fileDescriptor2) } var fileDescriptor2 = []byte{ - // 256 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x64, 0x90, 0xbf, 0x4e, 0xc3, 0x40, - 0x0c, 0xc6, 0x95, 0x36, 0x7f, 0x1a, 0xc3, 0x82, 0x07, 0xb0, 0x22, 0x86, 0x88, 0x01, 0x22, 0x86, - 0x54, 0x82, 0x37, 0x80, 0x05, 0xd6, 0x1b, 0xd9, 0x8e, 0xe8, 0x42, 0x4e, 0xa5, 0xe7, 0x28, 0x17, - 0xf1, 0x2c, 0x3c, 0x2e, 0xba, 0x3f, 0x85, 0x94, 0x2e, 0x4e, 0xec, 0xdf, 0xa7, 0xcf, 0xdf, 0x19, - 0xaa, 0x41, 0x8e, 0x7a, 0x3b, 0xa9, 0x4f, 0x25, 0xad, 0x3a, 0x7c, 0xdb, 0x71, 0xe2, 0x99, 0xf1, - 0xdc, 0xb1, 0x36, 0xce, 0xaa, 0xab, 0x23, 0xe5, 0xc0, 0xbc, 0x0b, 0xb2, 0x7f, 0x40, 0x9b, 0x9e, - 0x8f, 0x40, 0x37, 0xc8, 0x69, 0xde, 0x76, 0x6c, 0x7a, 0xfd, 0x11, 0xc1, 0xe5, 0x12, 0xb8, 0x1a, - 0xe6, 0x37, 0xdf, 0x2b, 0x28, 0x44, 0xf0, 0x41, 0x84, 0xd4, 0xc8, 0xbd, 0xa2, 0xa4, 0x4e, 0x9a, - 0x52, 0xf8, 0x7f, 0xbc, 0x85, 0xd4, 0xd9, 0xd3, 0xaa, 0x4e, 0x9a, 0xb3, 0x07, 0x6c, 0x97, 0xf9, - 0xda, 0x57, 0xd3, 0xb3, 0xf0, 0x1c, 0xef, 0x20, 0xf3, 0xb6, 0xb4, 0xf6, 0xc2, 0x8b, 0x20, 0x0c, - 0x9b, 0x9e, 0x5d, 0x15, 0x81, 0xe3, 0x3d, 0xe4, 0x21, 0x18, 0xa5, 0x4b, 0xcb, 0xa8, 0xf4, 0x44, - 0x44, 0x05, 0x56, 0xb0, 0xd9, 0x4b, 0xa3, 0x7b, 0x65, 0x67, 0xca, 0x7c, 0xa8, 0xdf, 0x1e, 0x1b, - 0xc8, 0xdc, 0x41, 0x2c, 0xe5, 0xf5, 0xfa, 0x34, 0xd9, 0x0b, 0xf3, 0x4e, 0x04, 0x01, 0x12, 0x14, - 0x5f, 0x6a, 0xb2, 0x9a, 0x0d, 0x15, 0x75, 0xd2, 0x64, 0xe2, 0xd0, 0xe2, 0x35, 0x94, 0xee, 0x91, - 0x76, 0x94, 0x9d, 0xa2, 0x8d, 0x5f, 0xf0, 0x37, 0x78, 0x2a, 0xdf, 0x8a, 0x68, 0xf7, 0x9e, 0xfb, - 0x63, 0x3d, 0xfe, 0x04, 0x00, 0x00, 0xff, 0xff, 0xc8, 0x8f, 0xec, 0x97, 0xbb, 0x01, 0x00, 0x00, + // 254 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x64, 0x90, 0x3f, 0x4f, 0xc3, 0x30, + 0x10, 0xc5, 0xd5, 0x36, 0x7f, 0x9a, 0x83, 0x85, 0x1b, 0xe0, 0x14, 0x31, 0x54, 0x0c, 0x50, 0x31, + 0xa4, 0x12, 0x7c, 0x03, 0x58, 0x60, 0xf5, 0xc8, 0x66, 0x22, 0x87, 0x58, 0x50, 0x3b, 0x8a, 0x23, + 0x3e, 0x0b, 0x1f, 0x17, 0xdb, 0xe7, 0x42, 0x0a, 0x8b, 0x13, 0xbf, 0xdf, 0xd3, 0xbb, 0xe7, 0x83, + 0xba, 0x97, 0x83, 0xde, 0x8d, 0xea, 0x43, 0x49, 0xa7, 0x0e, 0xdf, 0x66, 0x18, 0xed, 0x64, 0xf1, + 0x34, 0xb0, 0x26, 0x69, 0xf5, 0xc5, 0x91, 0xb3, 0xb7, 0xf6, 0x9d, 0x6d, 0x7f, 0x80, 0x36, 0x9d, + 0x3d, 0x02, 0x6d, 0x2f, 0xc7, 0x69, 0xd7, 0x5a, 0xd3, 0xe9, 0xb7, 0x04, 0xce, 0xe7, 0x20, 0x9c, + 0xac, 0x5f, 0x7d, 0x2d, 0xa1, 0x14, 0x9c, 0x83, 0x08, 0x99, 0x91, 0x7b, 0x45, 0x8b, 0xcd, 0x62, + 0x5b, 0x89, 0xf8, 0x8f, 0xd7, 0x90, 0x85, 0x78, 0x5a, 0x7a, 0xed, 0xe4, 0x0e, 0x9b, 0x79, 0xbf, + 0xe6, 0xd9, 0x13, 0x11, 0x39, 0xde, 0x40, 0x1e, 0x63, 0x69, 0x15, 0x8d, 0x67, 0x6c, 0xe4, 0x49, + 0x8f, 0xe1, 0x14, 0xcc, 0xf1, 0x16, 0x0a, 0x2e, 0x46, 0xd9, 0x3c, 0x32, 0x39, 0x23, 0x11, 0xc9, + 0x81, 0x35, 0xac, 0xf7, 0xd2, 0xe8, 0x4e, 0xb9, 0x89, 0xf2, 0x58, 0xea, 0xe7, 0x8e, 0x5b, 0xc8, + 0xc3, 0x42, 0x1c, 0x15, 0x9b, 0xd5, 0xff, 0x66, 0x4f, 0x1e, 0x09, 0x36, 0x20, 0x41, 0xf9, 0xa9, + 0x46, 0xa7, 0xad, 0xa1, 0xd2, 0x87, 0xe4, 0xe2, 0x70, 0xc5, 0x4b, 0xa8, 0xc2, 0x23, 0xdd, 0x20, + 0x5b, 0x45, 0xeb, 0x38, 0xe0, 0x57, 0x78, 0xa8, 0x5e, 0xca, 0x14, 0xf7, 0x5a, 0xc4, 0x65, 0xdd, + 0x7f, 0x07, 0x00, 0x00, 0xff, 0xff, 0xc8, 0x8f, 0xec, 0x97, 0xbb, 0x01, 0x00, 0x00, } diff --git a/pkg/proto/hapi/release/status.pb.go b/pkg/proto/hapi/release/status.pb.go index 79c721e31..6be0f74ac 100644 --- a/pkg/proto/hapi/release/status.pb.go +++ b/pkg/proto/hapi/release/status.pb.go @@ -79,22 +79,22 @@ func init() { func init() { proto.RegisterFile("hapi/release/status.proto", fileDescriptor3) } var fileDescriptor3 = []byte{ - // 261 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x4c, 0x8f, 0xc1, 0x4e, 0x83, 0x40, - 0x10, 0x86, 0xdd, 0x16, 0x41, 0xa6, 0x4d, 0x43, 0x36, 0x3d, 0x80, 0xf1, 0x40, 0x7a, 0xe2, 0xe2, - 0x92, 0xd4, 0x27, 0xa8, 0xee, 0x9a, 0xa8, 0x84, 0x36, 0x60, 0x63, 0xf4, 0x46, 0xcb, 0x58, 0x9b, - 0x10, 0xb6, 0x61, 0x97, 0x43, 0x9f, 0xd8, 0xd7, 0x30, 0x2c, 0x6d, 0xec, 0x71, 0xe6, 0xfb, 0x66, - 0xfe, 0x19, 0x08, 0x7e, 0x8a, 0xc3, 0x3e, 0x6e, 0xb0, 0xc2, 0x42, 0x61, 0xac, 0x74, 0xa1, 0x5b, - 0xc5, 0x0e, 0x8d, 0xd4, 0x92, 0x8e, 0x3b, 0xc4, 0x4e, 0xe8, 0x36, 0xd8, 0x49, 0xb9, 0xab, 0x30, - 0x36, 0x6c, 0xd3, 0x7e, 0xc7, 0x45, 0x7d, 0xec, 0xc5, 0xd9, 0x2f, 0x01, 0x3b, 0x37, 0x93, 0xf4, - 0x1e, 0xac, 0xad, 0x2c, 0xd1, 0x27, 0x21, 0x89, 0x26, 0xf3, 0x80, 0x5d, 0xae, 0x60, 0xbd, 0xc3, - 0x9e, 0x64, 0x89, 0x99, 0xd1, 0x28, 0x03, 0xa7, 0x44, 0x5d, 0xec, 0x2b, 0xe5, 0x0f, 0x42, 0x12, - 0x8d, 0xe6, 0x53, 0xd6, 0xc7, 0xb0, 0x73, 0x0c, 0x5b, 0xd4, 0xc7, 0xec, 0x2c, 0xd1, 0x3b, 0x70, - 0x1b, 0x54, 0xb2, 0x6d, 0xb6, 0xa8, 0xfc, 0x61, 0x48, 0x22, 0x37, 0xfb, 0x6f, 0xd0, 0x29, 0x5c, - 0xd7, 0x52, 0xa3, 0xf2, 0x2d, 0x43, 0xfa, 0x62, 0xf6, 0x0a, 0x56, 0x97, 0x48, 0x47, 0xe0, 0xac, - 0xd3, 0xb7, 0x74, 0xf9, 0x91, 0x7a, 0x57, 0x74, 0x0c, 0x37, 0x5c, 0xac, 0x92, 0xe5, 0xa7, 0xe0, - 0x1e, 0xe9, 0x10, 0x17, 0x89, 0x78, 0x17, 0xdc, 0x1b, 0xd0, 0x09, 0x40, 0xbe, 0x5e, 0x89, 0x2c, - 0x17, 0x5c, 0x70, 0x6f, 0x48, 0x01, 0xec, 0xe7, 0xc5, 0x4b, 0x22, 0xb8, 0x67, 0x3d, 0xba, 0x5f, - 0xce, 0xe9, 0x99, 0x8d, 0x6d, 0x2e, 0x7c, 0xf8, 0x0b, 0x00, 0x00, 0xff, 0xff, 0xae, 0x07, 0x47, - 0x1f, 0x41, 0x01, 0x00, 0x00, + // 259 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x4c, 0x8f, 0xc1, 0x4e, 0xf2, 0x40, + 0x14, 0x85, 0xff, 0x42, 0xff, 0xd6, 0x5e, 0x08, 0x21, 0x37, 0x2c, 0x5a, 0xe3, 0xc2, 0xb0, 0x72, + 0xe3, 0x6d, 0x82, 0x4f, 0x80, 0x76, 0x4c, 0xd4, 0xa6, 0x90, 0x56, 0x62, 0x74, 0x37, 0xc0, 0x88, + 0x24, 0x4d, 0x87, 0x74, 0xa6, 0x0b, 0x9e, 0xd8, 0xd7, 0x70, 0x3a, 0x85, 0xe8, 0xae, 0xa7, 0xdf, + 0x77, 0xe6, 0xcc, 0x40, 0xf4, 0xc5, 0x0f, 0xfb, 0xb8, 0x16, 0xa5, 0xe0, 0x4a, 0xc4, 0x4a, 0x73, + 0xdd, 0x28, 0x3a, 0xd4, 0x52, 0x4b, 0x1c, 0xb6, 0x88, 0x4e, 0xe8, 0x32, 0xda, 0x49, 0xb9, 0x2b, + 0x45, 0x6c, 0xd9, 0xba, 0xf9, 0x8c, 0x79, 0x75, 0xec, 0xc4, 0xe9, 0xb7, 0x03, 0x5e, 0x61, 0x9b, + 0x78, 0x0b, 0xee, 0x46, 0x6e, 0x45, 0xe8, 0x5c, 0x3b, 0x37, 0xa3, 0x59, 0x44, 0x7f, 0x8f, 0xa0, + 0xce, 0xa1, 0x07, 0x23, 0xe4, 0x56, 0x43, 0x02, 0x7f, 0x2b, 0x34, 0xdf, 0x97, 0x2a, 0xec, 0x99, + 0xc6, 0x60, 0x36, 0xa1, 0x6e, 0x86, 0xce, 0x33, 0x34, 0xaf, 0x8e, 0xf9, 0x59, 0xc2, 0x2b, 0x08, + 0x6a, 0xa1, 0x64, 0x53, 0x6f, 0x84, 0x0a, 0xfb, 0xa6, 0x11, 0xe4, 0xbf, 0x3f, 0x70, 0x02, 0xff, + 0x2b, 0xa9, 0x0d, 0x71, 0x2d, 0xe9, 0xc2, 0xf4, 0x19, 0xdc, 0x76, 0x11, 0x07, 0xe0, 0xaf, 0xb2, + 0x97, 0x6c, 0xf1, 0x96, 0x8d, 0xff, 0xe1, 0x10, 0x2e, 0x12, 0xb6, 0x4c, 0x17, 0xef, 0x2c, 0x19, + 0x3b, 0x2d, 0x4a, 0x58, 0xca, 0x5e, 0x4d, 0xe8, 0xe1, 0x08, 0xa0, 0x58, 0x2d, 0x59, 0x5e, 0xb0, + 0xc4, 0xe4, 0x3e, 0x02, 0x78, 0x8f, 0xf3, 0xa7, 0xd4, 0x7c, 0xbb, 0xf7, 0xc1, 0x87, 0x7f, 0x7a, + 0xcc, 0xda, 0xb3, 0x37, 0xbc, 0xfb, 0x09, 0x00, 0x00, 0xff, 0xff, 0xae, 0x07, 0x47, 0x1f, 0x41, + 0x01, 0x00, 0x00, } diff --git a/pkg/proto/hapi/services/tiller.pb.go b/pkg/proto/hapi/services/tiller.pb.go index 6b2ddb6de..ca556500a 100644 --- a/pkg/proto/hapi/services/tiller.pb.go +++ b/pkg/proto/hapi/services/tiller.pb.go @@ -809,65 +809,65 @@ var _ReleaseService_serviceDesc = grpc.ServiceDesc{ func init() { proto.RegisterFile("hapi/services/tiller.proto", fileDescriptor0) } var fileDescriptor0 = []byte{ - // 951 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x9c, 0x56, 0x5f, 0x6f, 0xe3, 0x44, - 0x10, 0xaf, 0xf3, 0x3f, 0xd3, 0x3f, 0xa4, 0x73, 0x69, 0xe3, 0x5a, 0x80, 0x22, 0x23, 0xb8, 0x70, - 0x70, 0x29, 0x84, 0x57, 0x84, 0xd4, 0xcb, 0x45, 0x6d, 0xb9, 0x92, 0x93, 0x36, 0x14, 0x24, 0x1e, - 0x88, 0xdc, 0x64, 0x73, 0x35, 0xe7, 0x78, 0x83, 0x77, 0x53, 0xd1, 0x77, 0x5e, 0x78, 0xe0, 0x4b, - 0xf0, 0x3d, 0xf8, 0x64, 0xbc, 0x20, 0xef, 0x7a, 0xdd, 0x38, 0xb1, 0xaf, 0xbe, 0xbc, 0xc4, 0xde, - 0x9d, 0x9f, 0x7f, 0x33, 0xf3, 0x9b, 0x9d, 0xd9, 0x80, 0x75, 0xeb, 0x2c, 0xdc, 0x53, 0x4e, 0x83, - 0x3b, 0x77, 0x42, 0xf9, 0xa9, 0x70, 0x3d, 0x8f, 0x06, 0xdd, 0x45, 0xc0, 0x04, 0xc3, 0x66, 0x68, - 0xeb, 0x6a, 0x5b, 0x57, 0xd9, 0xac, 0x63, 0xf9, 0xc5, 0xe4, 0xd6, 0x09, 0x84, 0xfa, 0x55, 0x68, - 0xab, 0xb5, 0xba, 0xcf, 0xfc, 0x99, 0xfb, 0x26, 0x32, 0x28, 0x17, 0x01, 0xf5, 0xa8, 0xc3, 0xa9, - 0x7e, 0x26, 0x3e, 0xd2, 0x36, 0xd7, 0x9f, 0xb1, 0xc8, 0x70, 0x92, 0x30, 0x70, 0xe1, 0x88, 0x25, - 0x4f, 0xf0, 0xdd, 0xd1, 0x80, 0xbb, 0xcc, 0xd7, 0x4f, 0x65, 0xb3, 0xff, 0x29, 0xc0, 0x93, 0x2b, - 0x97, 0x0b, 0xa2, 0x3e, 0xe4, 0x84, 0xfe, 0xbe, 0xa4, 0x5c, 0x60, 0x13, 0xca, 0x9e, 0x3b, 0x77, - 0x85, 0x69, 0xb4, 0x8d, 0x4e, 0x91, 0xa8, 0x05, 0x1e, 0x43, 0x85, 0xcd, 0x66, 0x9c, 0x0a, 0xb3, - 0xd0, 0x36, 0x3a, 0x75, 0x12, 0xad, 0xf0, 0x3b, 0xa8, 0x72, 0x16, 0x88, 0xf1, 0xcd, 0xbd, 0x59, - 0x6c, 0x1b, 0x9d, 0x83, 0xde, 0xa7, 0xdd, 0x34, 0x29, 0xba, 0xa1, 0xa7, 0x11, 0x0b, 0x44, 0x37, - 0xfc, 0x79, 0x71, 0x4f, 0x2a, 0x5c, 0x3e, 0x43, 0xde, 0x99, 0xeb, 0x09, 0x1a, 0x98, 0x25, 0xc5, - 0xab, 0x56, 0x78, 0x0e, 0x20, 0x79, 0x59, 0x30, 0xa5, 0x81, 0x59, 0x96, 0xd4, 0x9d, 0x1c, 0xd4, - 0xaf, 0x43, 0x3c, 0xa9, 0x73, 0xfd, 0x8a, 0xdf, 0xc2, 0x9e, 0x92, 0x64, 0x3c, 0x61, 0x53, 0xca, - 0xcd, 0x4a, 0xbb, 0xd8, 0x39, 0xe8, 0x9d, 0x28, 0x2a, 0xad, 0xf0, 0x48, 0x89, 0xd6, 0x67, 0x53, - 0x4a, 0x76, 0x15, 0x3c, 0x7c, 0xe7, 0xf6, 0xaf, 0x50, 0xd3, 0xf4, 0x76, 0x0f, 0x2a, 0x2a, 0x78, - 0xdc, 0x85, 0xea, 0xf5, 0xf0, 0xd5, 0xf0, 0xf5, 0xcf, 0xc3, 0xc6, 0x0e, 0xd6, 0xa0, 0x34, 0x3c, - 0xfb, 0x61, 0xd0, 0x30, 0xf0, 0x10, 0xf6, 0xaf, 0xce, 0x46, 0x3f, 0x8e, 0xc9, 0xe0, 0x6a, 0x70, - 0x36, 0x1a, 0xbc, 0x6c, 0x14, 0xec, 0x8f, 0xa1, 0x1e, 0x47, 0x85, 0x55, 0x28, 0x9e, 0x8d, 0xfa, - 0xea, 0x93, 0x97, 0x83, 0x51, 0xbf, 0x61, 0xd8, 0x7f, 0x19, 0xd0, 0x4c, 0x16, 0x81, 0x2f, 0x98, - 0xcf, 0x69, 0x58, 0x85, 0x09, 0x5b, 0xfa, 0x71, 0x15, 0xe4, 0x02, 0x11, 0x4a, 0x3e, 0xfd, 0x43, - 0xd7, 0x40, 0xbe, 0x87, 0x48, 0xc1, 0x84, 0xe3, 0x49, 0xfd, 0x8b, 0x44, 0x2d, 0xf0, 0x6b, 0xa8, - 0x45, 0xc9, 0x71, 0xb3, 0xd4, 0x2e, 0x76, 0x76, 0x7b, 0x47, 0xc9, 0x94, 0x23, 0x8f, 0x24, 0x86, - 0xd9, 0xe7, 0xd0, 0x3a, 0xa7, 0x3a, 0x12, 0xa5, 0x88, 0x3e, 0x13, 0xa1, 0x5f, 0x67, 0x4e, 0x65, - 0x30, 0xa1, 0x5f, 0x67, 0x4e, 0xd1, 0x84, 0x6a, 0x74, 0xa0, 0x64, 0x38, 0x65, 0xa2, 0x97, 0xb6, - 0x00, 0x73, 0x93, 0x28, 0xca, 0x2b, 0x8d, 0xe9, 0x33, 0x28, 0x85, 0xc7, 0x59, 0xd2, 0xec, 0xf6, - 0x30, 0x19, 0xe7, 0xa5, 0x3f, 0x63, 0x44, 0xda, 0xf1, 0x43, 0xa8, 0x87, 0x78, 0xbe, 0x70, 0x26, - 0x54, 0x66, 0x5b, 0x27, 0x0f, 0x1b, 0xf6, 0xc5, 0xaa, 0xd7, 0x3e, 0xf3, 0x05, 0xf5, 0xc5, 0x76, - 0xf1, 0x5f, 0xc1, 0x49, 0x0a, 0x53, 0x94, 0xc0, 0x29, 0x54, 0xa3, 0xd0, 0x24, 0x5b, 0xa6, 0xae, - 0x1a, 0x65, 0xff, 0x6b, 0x40, 0xf3, 0x7a, 0x31, 0x75, 0x04, 0xd5, 0xa6, 0x77, 0x04, 0xf5, 0x14, - 0xca, 0x72, 0x2c, 0x44, 0x5a, 0x1c, 0x2a, 0x6e, 0x35, 0x3b, 0xfa, 0xe1, 0x2f, 0x51, 0x76, 0x7c, - 0x06, 0x95, 0x3b, 0xc7, 0x5b, 0x52, 0x2e, 0x85, 0x88, 0x55, 0x8b, 0x90, 0x72, 0xa6, 0x90, 0x08, - 0x81, 0x2d, 0xa8, 0x4e, 0x83, 0xfb, 0x71, 0xb0, 0xf4, 0x65, 0x93, 0xd5, 0x48, 0x65, 0x1a, 0xdc, - 0x93, 0xa5, 0x8f, 0x9f, 0xc0, 0xfe, 0xd4, 0xe5, 0xce, 0x8d, 0x47, 0xc7, 0xb7, 0x8c, 0xbd, 0xe5, - 0xb2, 0xcf, 0x6a, 0x64, 0x2f, 0xda, 0xbc, 0x08, 0xf7, 0xec, 0x0b, 0x38, 0x5a, 0x0b, 0x7f, 0x5b, - 0x25, 0xfe, 0x34, 0xe0, 0x98, 0x30, 0xcf, 0xbb, 0x71, 0x26, 0x6f, 0x73, 0x68, 0xb1, 0x12, 0x76, - 0xe1, 0xdd, 0x61, 0x17, 0x37, 0xc3, 0x5e, 0x2d, 0x6f, 0x29, 0x59, 0xde, 0xef, 0xa1, 0xb5, 0x11, - 0xc5, 0xb6, 0x29, 0xfd, 0x67, 0xc0, 0xd1, 0xa5, 0xcf, 0x85, 0xe3, 0x79, 0x6b, 0x19, 0xc5, 0x95, - 0x34, 0x72, 0x57, 0xb2, 0xf0, 0x3e, 0x95, 0x2c, 0x26, 0x24, 0xd1, 0xfa, 0x95, 0x56, 0xf4, 0xcb, - 0x53, 0xdd, 0x64, 0x4f, 0x55, 0xd6, 0x7a, 0x0a, 0x3f, 0x02, 0x08, 0xe8, 0x92, 0xd3, 0xb1, 0x24, - 0xaf, 0xca, 0xef, 0xeb, 0x72, 0x67, 0xe8, 0xcc, 0xa9, 0x7d, 0x09, 0xc7, 0xeb, 0xc9, 0x6f, 0x2b, - 0xe4, 0x2d, 0xb4, 0xae, 0x7d, 0x37, 0x55, 0xc9, 0xb4, 0xb3, 0xb1, 0x91, 0x5b, 0x21, 0x25, 0xb7, - 0x26, 0x94, 0x17, 0xcb, 0xe0, 0x0d, 0x8d, 0xb4, 0x52, 0x0b, 0xfb, 0x15, 0x98, 0x9b, 0x9e, 0xb6, - 0x0d, 0xfb, 0x09, 0x1c, 0x9e, 0x53, 0xf1, 0x93, 0x3a, 0x59, 0x51, 0xc0, 0xf6, 0x00, 0x70, 0x75, - 0xf3, 0x81, 0x3b, 0xda, 0x4a, 0x72, 0xeb, 0x5b, 0x59, 0xe3, 0x35, 0xaa, 0xf7, 0x77, 0x15, 0x0e, - 0xf4, 0x10, 0x55, 0x57, 0x1e, 0xba, 0xb0, 0xb7, 0x7a, 0x5b, 0xe0, 0xe7, 0xd9, 0x37, 0xe2, 0xda, - 0xb5, 0x6e, 0x3d, 0xcb, 0x03, 0x55, 0xa1, 0xda, 0x3b, 0x5f, 0x19, 0xc8, 0xa1, 0xb1, 0x3e, 0xc4, - 0xf1, 0x79, 0x3a, 0x47, 0xc6, 0xad, 0x61, 0x75, 0xf3, 0xc2, 0xb5, 0x5b, 0xbc, 0x93, 0x72, 0x26, - 0x27, 0x2f, 0x3e, 0x4a, 0x93, 0x1c, 0xf6, 0xd6, 0x69, 0x6e, 0x7c, 0xec, 0xf7, 0x37, 0xd8, 0x4f, - 0xcc, 0x38, 0xcc, 0x50, 0x2b, 0x6d, 0x8e, 0x5b, 0x5f, 0xe4, 0xc2, 0xc6, 0xbe, 0xe6, 0x70, 0x90, - 0x6c, 0x1a, 0xcc, 0x20, 0x48, 0x9d, 0x2b, 0xd6, 0x97, 0xf9, 0xc0, 0xb1, 0x3b, 0x0e, 0x8d, 0xf5, - 0xe3, 0x9e, 0x55, 0xc7, 0x8c, 0x06, 0xcc, 0xaa, 0x63, 0x56, 0x17, 0xd9, 0x3b, 0xe8, 0x00, 0x3c, - 0x74, 0x00, 0x3e, 0xcd, 0x2c, 0x48, 0xb2, 0x71, 0xac, 0xce, 0xe3, 0xc0, 0xd8, 0xc5, 0x02, 0x3e, - 0x58, 0x9b, 0xe2, 0x98, 0x21, 0x4d, 0xfa, 0x95, 0x63, 0x3d, 0xcf, 0x89, 0xd6, 0x1e, 0x5f, 0xc0, - 0x2f, 0x35, 0x0d, 0xbe, 0xa9, 0xc8, 0xff, 0xd0, 0xdf, 0xfc, 0x1f, 0x00, 0x00, 0xff, 0xff, 0x76, - 0x9b, 0x44, 0xa7, 0x14, 0x0c, 0x00, 0x00, + // 946 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x9c, 0x56, 0xdd, 0x72, 0xdb, 0x44, + 0x14, 0xae, 0x6c, 0xc7, 0xb2, 0x4f, 0x7e, 0x48, 0xb6, 0x49, 0xac, 0x68, 0x80, 0xe9, 0x88, 0x81, + 0x86, 0x42, 0x1d, 0x30, 0xb7, 0x0c, 0x33, 0x69, 0xea, 0x49, 0x43, 0x83, 0x3b, 0xb3, 0x26, 0x30, + 0xc3, 0x05, 0x1e, 0xc5, 0x5e, 0x37, 0xa2, 0x8a, 0xd6, 0x68, 0xd7, 0x1e, 0x72, 0xcf, 0x0d, 0x17, + 0xbc, 0x04, 0xef, 0xc1, 0x93, 0x71, 0xc3, 0x6a, 0x7f, 0x14, 0x4b, 0x96, 0x5a, 0xd5, 0x37, 0xd6, + 0xee, 0x9e, 0x6f, 0xbf, 0x73, 0xce, 0x77, 0x76, 0xcf, 0x1a, 0xdc, 0x1b, 0x7f, 0x16, 0x9c, 0x30, + 0x12, 0x2f, 0x82, 0x31, 0x61, 0x27, 0x3c, 0x08, 0x43, 0x12, 0x77, 0x67, 0x31, 0xe5, 0x14, 0xed, + 0x27, 0xb6, 0xae, 0xb1, 0x75, 0x95, 0xcd, 0x3d, 0x94, 0x3b, 0xc6, 0x37, 0x7e, 0xcc, 0xd5, 0xaf, + 0x42, 0xbb, 0x9d, 0xe5, 0x75, 0x1a, 0x4d, 0x83, 0xd7, 0xda, 0xa0, 0x5c, 0xc4, 0x24, 0x24, 0x3e, + 0x23, 0xe6, 0x9b, 0xd9, 0x64, 0x6c, 0x41, 0x34, 0xa5, 0xda, 0x70, 0x94, 0x31, 0x30, 0xee, 0xf3, + 0x39, 0xcb, 0xf0, 0x2d, 0x48, 0xcc, 0x02, 0x1a, 0x99, 0xaf, 0xb2, 0x79, 0xff, 0xd4, 0xe0, 0xe1, + 0x65, 0xc0, 0x38, 0x56, 0x1b, 0x19, 0x26, 0xbf, 0xcf, 0x09, 0xe3, 0x68, 0x1f, 0x36, 0xc2, 0xe0, + 0x36, 0xe0, 0x8e, 0xf5, 0xc8, 0x3a, 0xae, 0x63, 0x35, 0x41, 0x87, 0xd0, 0xa4, 0xd3, 0x29, 0x23, + 0xdc, 0xa9, 0x89, 0xe5, 0x36, 0xd6, 0x33, 0xf4, 0x1d, 0xd8, 0x8c, 0xc6, 0x7c, 0x74, 0x7d, 0xe7, + 0xd4, 0x85, 0x61, 0xa7, 0xf7, 0x69, 0xb7, 0x48, 0x8a, 0x6e, 0xe2, 0x69, 0x28, 0x80, 0xdd, 0xe4, + 0xe7, 0xd9, 0x1d, 0x6e, 0x32, 0xf9, 0x4d, 0x78, 0xa7, 0x41, 0xc8, 0x49, 0xec, 0x34, 0x14, 0xaf, + 0x9a, 0xa1, 0x73, 0x00, 0xc9, 0x4b, 0xe3, 0x89, 0xb0, 0x6d, 0x48, 0xea, 0xe3, 0x0a, 0xd4, 0xaf, + 0x12, 0x3c, 0x6e, 0x33, 0x33, 0x44, 0xdf, 0xc2, 0x96, 0x92, 0x64, 0x34, 0xa6, 0x13, 0xc2, 0x9c, + 0xe6, 0xa3, 0xba, 0xa0, 0x3a, 0x52, 0x54, 0x46, 0xe1, 0xa1, 0x12, 0xed, 0x4c, 0x20, 0xf0, 0xa6, + 0x82, 0x27, 0x63, 0xe6, 0xfd, 0x0a, 0x2d, 0x43, 0xef, 0xf5, 0xa0, 0xa9, 0x82, 0x47, 0x9b, 0x60, + 0x5f, 0x0d, 0x5e, 0x0e, 0x5e, 0xfd, 0x3c, 0xd8, 0x7d, 0x80, 0x5a, 0xd0, 0x18, 0x9c, 0xfe, 0xd0, + 0xdf, 0xb5, 0xd0, 0x1e, 0x6c, 0x5f, 0x9e, 0x0e, 0x7f, 0x1c, 0xe1, 0xfe, 0x65, 0xff, 0x74, 0xd8, + 0x7f, 0xbe, 0x5b, 0xf3, 0x3e, 0x86, 0x76, 0x1a, 0x15, 0xb2, 0xa1, 0x7e, 0x3a, 0x3c, 0x53, 0x5b, + 0x9e, 0xf7, 0xc5, 0xc8, 0xf2, 0xfe, 0xb2, 0x60, 0x3f, 0x5b, 0x04, 0x36, 0xa3, 0x11, 0x23, 0x49, + 0x15, 0xc6, 0x74, 0x1e, 0xa5, 0x55, 0x90, 0x13, 0x84, 0xa0, 0x11, 0x91, 0x3f, 0x4c, 0x0d, 0xe4, + 0x38, 0x41, 0x72, 0xca, 0xfd, 0x50, 0xea, 0x2f, 0x90, 0x72, 0x82, 0xbe, 0x86, 0x96, 0x4e, 0x8e, + 0x09, 0x65, 0xeb, 0xc7, 0x9b, 0xbd, 0x83, 0x6c, 0xca, 0xda, 0x23, 0x4e, 0x61, 0xde, 0x39, 0x74, + 0xce, 0x89, 0x89, 0x44, 0x29, 0x62, 0xce, 0x44, 0xe2, 0xd7, 0xbf, 0x25, 0x32, 0x98, 0xc4, 0xaf, + 0x18, 0x23, 0x07, 0x6c, 0x7d, 0xa0, 0x64, 0x38, 0x1b, 0xd8, 0x4c, 0x3d, 0x0e, 0xce, 0x2a, 0x91, + 0xce, 0xab, 0x88, 0xe9, 0x33, 0x68, 0x24, 0xc7, 0x59, 0xd2, 0x6c, 0xf6, 0x50, 0x36, 0xce, 0x0b, + 0x61, 0xc1, 0xd2, 0x8e, 0x3e, 0x84, 0x76, 0x82, 0x67, 0x33, 0x7f, 0x4c, 0x64, 0xb6, 0x6d, 0x7c, + 0xbf, 0xe0, 0xbd, 0x58, 0xf6, 0x7a, 0x46, 0x23, 0x4e, 0x22, 0xbe, 0x5e, 0xfc, 0x97, 0x70, 0x54, + 0xc0, 0xa4, 0x13, 0x38, 0x01, 0x5b, 0x87, 0x26, 0xd9, 0x4a, 0x75, 0x35, 0x28, 0xef, 0x5f, 0x51, + 0xe2, 0xab, 0xd9, 0xc4, 0xe7, 0xc4, 0x98, 0xde, 0x12, 0xd4, 0x63, 0x51, 0xf6, 0xa4, 0x2d, 0x68, + 0x2d, 0xf6, 0x14, 0xb7, 0xea, 0x1d, 0x67, 0xc9, 0x2f, 0x56, 0x76, 0xf4, 0x04, 0x9a, 0x0b, 0x3f, + 0x14, 0x3c, 0x52, 0x88, 0x54, 0x35, 0x8d, 0x94, 0x3d, 0x05, 0x6b, 0x04, 0xea, 0x80, 0x3d, 0x89, + 0xef, 0x46, 0xf1, 0x3c, 0x92, 0x97, 0xac, 0x85, 0x9b, 0x62, 0x8a, 0xe7, 0x11, 0xfa, 0x04, 0xb6, + 0x27, 0x01, 0xf3, 0xaf, 0x43, 0x32, 0xba, 0xa1, 0xf4, 0x0d, 0x93, 0xf7, 0xac, 0x85, 0xb7, 0xf4, + 0xe2, 0x8b, 0x64, 0x4d, 0xe8, 0x7a, 0x90, 0x0b, 0x7f, 0x5d, 0x25, 0xfe, 0xb4, 0xe0, 0x10, 0xd3, + 0x30, 0xbc, 0xf6, 0xc7, 0x6f, 0x2a, 0x68, 0xb1, 0x14, 0x76, 0xed, 0xed, 0x61, 0xd7, 0x57, 0xc3, + 0x5e, 0x2e, 0x6f, 0x23, 0x5b, 0xde, 0xef, 0xa1, 0xb3, 0x12, 0xc5, 0xba, 0x29, 0xfd, 0x67, 0xc1, + 0xc1, 0x45, 0x24, 0x3a, 0x46, 0x18, 0xe6, 0x32, 0x4a, 0x2b, 0x69, 0x55, 0xae, 0x64, 0xed, 0x7d, + 0x2a, 0x59, 0xcf, 0x48, 0x62, 0xf4, 0x6b, 0x2c, 0xe9, 0x57, 0xa5, 0xba, 0xd9, 0x3b, 0xd5, 0xcc, + 0xdd, 0x29, 0xf4, 0x11, 0x40, 0x4c, 0xe6, 0x8c, 0x8c, 0x24, 0xb9, 0x2d, 0xf7, 0xb7, 0xe5, 0xca, + 0x40, 0x2c, 0x78, 0x17, 0x70, 0x98, 0x4f, 0x7e, 0x5d, 0x21, 0x6f, 0xa0, 0x73, 0x15, 0x05, 0x85, + 0x4a, 0x16, 0x9d, 0x8d, 0x95, 0xdc, 0x6a, 0x05, 0xb9, 0x89, 0xce, 0x38, 0x9b, 0xc7, 0xaf, 0x89, + 0xd6, 0x4a, 0x4d, 0xbc, 0x97, 0xe0, 0xac, 0x7a, 0x5a, 0x37, 0xec, 0x87, 0xb0, 0x27, 0x5a, 0xc5, + 0x4f, 0xea, 0x64, 0xe9, 0x80, 0xbd, 0x3e, 0xa0, 0xe5, 0xc5, 0x7b, 0x6e, 0xbd, 0x94, 0xe5, 0x36, + 0xaf, 0xb2, 0xc1, 0x1b, 0x54, 0xef, 0x6f, 0x1b, 0x76, 0x4c, 0x13, 0x55, 0x4f, 0x1e, 0x0a, 0x60, + 0x6b, 0xf9, 0xb5, 0x40, 0x9f, 0x97, 0xbf, 0x88, 0xb9, 0x67, 0xdd, 0x7d, 0x52, 0x05, 0xaa, 0x42, + 0xf5, 0x1e, 0x7c, 0x65, 0x21, 0x06, 0xbb, 0xf9, 0x26, 0x8e, 0x9e, 0x16, 0x73, 0x94, 0xbc, 0x1a, + 0x6e, 0xb7, 0x2a, 0xdc, 0xb8, 0x45, 0x0b, 0x29, 0x67, 0xb6, 0xf3, 0xa2, 0x77, 0xd2, 0x64, 0x9b, + 0xbd, 0x7b, 0x52, 0x19, 0x9f, 0xfa, 0xfd, 0x0d, 0xb6, 0x33, 0x3d, 0x0e, 0x95, 0xa8, 0x55, 0xd4, + 0xc7, 0xdd, 0x2f, 0x2a, 0x61, 0x53, 0x5f, 0xb7, 0xb0, 0x93, 0xbd, 0x34, 0xa8, 0x84, 0xa0, 0xb0, + 0xaf, 0xb8, 0x5f, 0x56, 0x03, 0xa7, 0xee, 0x44, 0x1d, 0xf3, 0xc7, 0xbd, 0xac, 0x8e, 0x25, 0x17, + 0xb0, 0xac, 0x8e, 0x65, 0xb7, 0x48, 0x38, 0xf5, 0x01, 0xee, 0x6f, 0x00, 0x7a, 0x5c, 0x5a, 0x90, + 0xec, 0xc5, 0x71, 0x8f, 0xdf, 0x0d, 0x4c, 0x5d, 0xcc, 0xe0, 0x83, 0x5c, 0x17, 0x47, 0x25, 0xd2, + 0x14, 0x3f, 0x39, 0xee, 0xd3, 0x8a, 0x68, 0xe3, 0xf1, 0x19, 0xfc, 0xd2, 0x32, 0xe0, 0xeb, 0xa6, + 0xfc, 0x0f, 0xfd, 0xcd, 0xff, 0x01, 0x00, 0x00, 0xff, 0xff, 0x76, 0x9b, 0x44, 0xa7, 0x14, 0x0c, + 0x00, 0x00, } diff --git a/pkg/proto/hapi/version/version.pb.go b/pkg/proto/hapi/version/version.pb.go index 79771408e..4677764e4 100644 --- a/pkg/proto/hapi/version/version.pb.go +++ b/pkg/proto/hapi/version/version.pb.go @@ -47,15 +47,14 @@ func init() { func init() { proto.RegisterFile("hapi/version/version.proto", fileDescriptor0) } var fileDescriptor0 = []byte{ - // 151 bytes of a gzipped FileDescriptorProto + // 144 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xe2, 0x92, 0xca, 0x48, 0x2c, 0xc8, 0xd4, 0x2f, 0x4b, 0x2d, 0x2a, 0xce, 0xcc, 0xcf, 0x83, 0xd1, 0x7a, 0x05, 0x45, 0xf9, 0x25, 0xf9, 0x42, 0x3c, 0x20, 0x39, 0x3d, 0xa8, 0x98, 0x52, 0x3a, 0x17, 0x7b, 0x18, 0x84, 0x29, 0x24, 0xce, - 0xc5, 0x5e, 0x9c, 0x9a, 0x1b, 0x5f, 0x96, 0x5a, 0x24, 0xc1, 0xa8, 0xc0, 0xa8, 0xc1, 0x19, 0xc4, - 0x56, 0x9c, 0x9a, 0x1b, 0x96, 0x5a, 0x24, 0x24, 0xcb, 0xc5, 0x95, 0x9e, 0x59, 0x12, 0x9f, 0x9c, - 0x9f, 0x9b, 0x9b, 0x59, 0x22, 0xc1, 0x04, 0x96, 0xe3, 0x4c, 0xcf, 0x2c, 0x71, 0x06, 0x0b, 0x08, - 0xa9, 0x70, 0xf1, 0x81, 0xa4, 0x4b, 0x8a, 0x52, 0x53, 0xe3, 0x8b, 0x4b, 0x12, 0x4b, 0x52, 0x25, - 0x98, 0xc1, 0x4a, 0x78, 0xd2, 0x33, 0x4b, 0x42, 0x8a, 0x52, 0x53, 0x83, 0x41, 0x62, 0x4e, 0x9c, - 0x51, 0xec, 0x50, 0x3b, 0x93, 0xd8, 0xc0, 0x0e, 0x31, 0x06, 0x04, 0x00, 0x00, 0xff, 0xff, 0x20, - 0xcc, 0x0e, 0x1b, 0xa6, 0x00, 0x00, 0x00, + 0xc5, 0x5e, 0x9c, 0x9a, 0x1b, 0x0f, 0x94, 0x91, 0x60, 0x54, 0x60, 0xd4, 0xe0, 0x0c, 0x62, 0x03, + 0x72, 0x81, 0x92, 0x42, 0xb2, 0x5c, 0x5c, 0xe9, 0x99, 0x25, 0xf1, 0xc9, 0xf9, 0xb9, 0xb9, 0x99, + 0x25, 0x12, 0x4c, 0x60, 0x39, 0x4e, 0xa0, 0x88, 0x33, 0x58, 0x40, 0x48, 0x85, 0x8b, 0x0f, 0x24, + 0x5d, 0x52, 0x94, 0x9a, 0x1a, 0x5f, 0x5c, 0x92, 0x58, 0x92, 0x2a, 0xc1, 0x0c, 0x56, 0xc2, 0x03, + 0x14, 0x0d, 0x01, 0x0a, 0x06, 0x83, 0xc4, 0x9c, 0x38, 0xa3, 0xd8, 0xa1, 0x76, 0x26, 0xb1, 0x81, + 0x1d, 0x62, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0x20, 0xcc, 0x0e, 0x1b, 0xa6, 0x00, 0x00, 0x00, }