Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
H
helm3
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
helm3
Commits
ed8f17a8
Commit
ed8f17a8
authored
Oct 04, 2019
by
Ting-Wai
Committed by
Martin Hickey
Oct 04, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Parameterize maximum number of tests pods to run in parallel (#6078)
Signed-off-by:
Ting-Wai To
<
tingwai@bitgo.com
>
parent
eaeb0346
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
148 additions
and
120 deletions
+148
-120
tiller.proto
_proto/hapi/services/tiller.proto
+2
-0
release_testing.go
cmd/helm/release_testing.go
+9
-6
helm_test.md
docs/helm/helm_test.md
+2
-1
option.go
pkg/helm/option.go
+7
-0
tiller.pb.go
pkg/proto/hapi/services/tiller.pb.go
+122
-112
release_testing.go
pkg/tiller/release_testing.go
+6
-1
No files found.
_proto/hapi/services/tiller.proto
View file @
ed8f17a8
...
...
@@ -350,6 +350,8 @@ message TestReleaseRequest {
bool
cleanup
=
3
;
// parallel specifies whether or not to run test pods in parallel
bool
parallel
=
4
;
// maximum number of test pods to run in parallel
uint32
max_parallel
=
5
;
}
// TestReleaseResponse represents a message from executing a test
...
...
cmd/helm/release_testing.go
View file @
ed8f17a8
...
...
@@ -34,12 +34,13 @@ The tests to be run are defined in the chart that was installed.
`
type
releaseTestCmd
struct
{
name
string
out
io
.
Writer
client
helm
.
Interface
timeout
int64
cleanup
bool
parallel
bool
name
string
out
io
.
Writer
client
helm
.
Interface
timeout
int64
cleanup
bool
parallel
bool
maxParallel
uint32
}
func
newReleaseTestCmd
(
c
helm
.
Interface
,
out
io
.
Writer
)
*
cobra
.
Command
{
...
...
@@ -69,6 +70,7 @@ func newReleaseTestCmd(c helm.Interface, out io.Writer) *cobra.Command {
f
.
Int64Var
(
&
rlsTest
.
timeout
,
"timeout"
,
300
,
"Time in seconds to wait for any individual Kubernetes operation (like Jobs for hooks)"
)
f
.
BoolVar
(
&
rlsTest
.
cleanup
,
"cleanup"
,
false
,
"Delete test pods upon completion"
)
f
.
BoolVar
(
&
rlsTest
.
parallel
,
"parallel"
,
false
,
"Run test pods in parallel"
)
f
.
Uint32Var
(
&
rlsTest
.
maxParallel
,
"max"
,
20
,
"Maximum number of test pods to run in parallel"
)
// set defaults from environment
settings
.
InitTLS
(
f
)
...
...
@@ -82,6 +84,7 @@ func (t *releaseTestCmd) run() (err error) {
helm
.
ReleaseTestTimeout
(
t
.
timeout
),
helm
.
ReleaseTestCleanup
(
t
.
cleanup
),
helm
.
ReleaseTestParallel
(
t
.
parallel
),
helm
.
ReleaseTestMaxParallel
(
t
.
maxParallel
),
)
testErr
:=
&
testErr
{}
...
...
docs/helm/helm_test.md
View file @
ed8f17a8
...
...
@@ -20,6 +20,7 @@ helm test [RELEASE] [flags]
```
--cleanup Delete test pods upon completion
-h, --help help for test
--max uint32 Maximum number of test pods to run in parallel (default 20)
--parallel Run test pods in parallel
--timeout int Time in seconds to wait for any individual Kubernetes operation (like Jobs for hooks) (default 300)
--tls Enable TLS for request
...
...
@@ -46,4 +47,4 @@ helm test [RELEASE] [flags]
*
[
helm
](
helm.md
)
- The Helm package manager for Kubernetes.
###### Auto generated by spf13/cobra on
16-May
-2019
###### Auto generated by spf13/cobra on
25-Jul
-2019
pkg/helm/option.go
View file @
ed8f17a8
...
...
@@ -234,6 +234,13 @@ func ReleaseTestParallel(parallel bool) ReleaseTestOption {
}
}
// ReleaseTestMaxParallel specifies the maximum number of test pods to run in parallel
func
ReleaseTestMaxParallel
(
max
uint32
)
ReleaseTestOption
{
return
func
(
opts
*
options
)
{
opts
.
testReq
.
MaxParallel
=
max
}
}
// RollbackTimeout specifies the number of seconds before kubernetes calls timeout
func
RollbackTimeout
(
timeout
int64
)
RollbackOption
{
return
func
(
opts
*
options
)
{
...
...
pkg/proto/hapi/services/tiller.pb.go
View file @
ed8f17a8
...
...
@@ -53,7 +53,7 @@ func (x ListSort_SortBy) String() string {
return
proto
.
EnumName
(
ListSort_SortBy_name
,
int32
(
x
))
}
func
(
ListSort_SortBy
)
EnumDescriptor
()
([]
byte
,
[]
int
)
{
return
fileDescriptor_tiller_
bb72ee4a42494734
,
[]
int
{
1
,
0
}
return
fileDescriptor_tiller_
45351572bedcef6e
,
[]
int
{
1
,
0
}
}
// SortOrder defines sort orders to augment sorting operations.
...
...
@@ -77,7 +77,7 @@ func (x ListSort_SortOrder) String() string {
return
proto
.
EnumName
(
ListSort_SortOrder_name
,
int32
(
x
))
}
func
(
ListSort_SortOrder
)
EnumDescriptor
()
([]
byte
,
[]
int
)
{
return
fileDescriptor_tiller_
bb72ee4a42494734
,
[]
int
{
1
,
1
}
return
fileDescriptor_tiller_
45351572bedcef6e
,
[]
int
{
1
,
1
}
}
// ListReleasesRequest requests a list of releases.
...
...
@@ -114,7 +114,7 @@ func (m *ListReleasesRequest) Reset() { *m = ListReleasesRequest{} }
func
(
m
*
ListReleasesRequest
)
String
()
string
{
return
proto
.
CompactTextString
(
m
)
}
func
(
*
ListReleasesRequest
)
ProtoMessage
()
{}
func
(
*
ListReleasesRequest
)
Descriptor
()
([]
byte
,
[]
int
)
{
return
fileDescriptor_tiller_
bb72ee4a42494734
,
[]
int
{
0
}
return
fileDescriptor_tiller_
45351572bedcef6e
,
[]
int
{
0
}
}
func
(
m
*
ListReleasesRequest
)
XXX_Unmarshal
(
b
[]
byte
)
error
{
return
xxx_messageInfo_ListReleasesRequest
.
Unmarshal
(
m
,
b
)
...
...
@@ -194,7 +194,7 @@ func (m *ListSort) Reset() { *m = ListSort{} }
func
(
m
*
ListSort
)
String
()
string
{
return
proto
.
CompactTextString
(
m
)
}
func
(
*
ListSort
)
ProtoMessage
()
{}
func
(
*
ListSort
)
Descriptor
()
([]
byte
,
[]
int
)
{
return
fileDescriptor_tiller_
bb72ee4a42494734
,
[]
int
{
1
}
return
fileDescriptor_tiller_
45351572bedcef6e
,
[]
int
{
1
}
}
func
(
m
*
ListSort
)
XXX_Unmarshal
(
b
[]
byte
)
error
{
return
xxx_messageInfo_ListSort
.
Unmarshal
(
m
,
b
)
...
...
@@ -234,7 +234,7 @@ func (m *ListReleasesResponse) Reset() { *m = ListReleasesResponse{} }
func
(
m
*
ListReleasesResponse
)
String
()
string
{
return
proto
.
CompactTextString
(
m
)
}
func
(
*
ListReleasesResponse
)
ProtoMessage
()
{}
func
(
*
ListReleasesResponse
)
Descriptor
()
([]
byte
,
[]
int
)
{
return
fileDescriptor_tiller_
bb72ee4a42494734
,
[]
int
{
2
}
return
fileDescriptor_tiller_
45351572bedcef6e
,
[]
int
{
2
}
}
func
(
m
*
ListReleasesResponse
)
XXX_Unmarshal
(
b
[]
byte
)
error
{
return
xxx_messageInfo_ListReleasesResponse
.
Unmarshal
(
m
,
b
)
...
...
@@ -297,7 +297,7 @@ func (m *GetReleaseStatusRequest) Reset() { *m = GetReleaseStatusRequest
func
(
m
*
GetReleaseStatusRequest
)
String
()
string
{
return
proto
.
CompactTextString
(
m
)
}
func
(
*
GetReleaseStatusRequest
)
ProtoMessage
()
{}
func
(
*
GetReleaseStatusRequest
)
Descriptor
()
([]
byte
,
[]
int
)
{
return
fileDescriptor_tiller_
bb72ee4a42494734
,
[]
int
{
3
}
return
fileDescriptor_tiller_
45351572bedcef6e
,
[]
int
{
3
}
}
func
(
m
*
GetReleaseStatusRequest
)
XXX_Unmarshal
(
b
[]
byte
)
error
{
return
xxx_messageInfo_GetReleaseStatusRequest
.
Unmarshal
(
m
,
b
)
...
...
@@ -348,7 +348,7 @@ func (m *GetReleaseStatusResponse) Reset() { *m = GetReleaseStatusRespon
func
(
m
*
GetReleaseStatusResponse
)
String
()
string
{
return
proto
.
CompactTextString
(
m
)
}
func
(
*
GetReleaseStatusResponse
)
ProtoMessage
()
{}
func
(
*
GetReleaseStatusResponse
)
Descriptor
()
([]
byte
,
[]
int
)
{
return
fileDescriptor_tiller_
bb72ee4a42494734
,
[]
int
{
4
}
return
fileDescriptor_tiller_
45351572bedcef6e
,
[]
int
{
4
}
}
func
(
m
*
GetReleaseStatusResponse
)
XXX_Unmarshal
(
b
[]
byte
)
error
{
return
xxx_messageInfo_GetReleaseStatusResponse
.
Unmarshal
(
m
,
b
)
...
...
@@ -404,7 +404,7 @@ func (m *GetReleaseContentRequest) Reset() { *m = GetReleaseContentReque
func
(
m
*
GetReleaseContentRequest
)
String
()
string
{
return
proto
.
CompactTextString
(
m
)
}
func
(
*
GetReleaseContentRequest
)
ProtoMessage
()
{}
func
(
*
GetReleaseContentRequest
)
Descriptor
()
([]
byte
,
[]
int
)
{
return
fileDescriptor_tiller_
bb72ee4a42494734
,
[]
int
{
5
}
return
fileDescriptor_tiller_
45351572bedcef6e
,
[]
int
{
5
}
}
func
(
m
*
GetReleaseContentRequest
)
XXX_Unmarshal
(
b
[]
byte
)
error
{
return
xxx_messageInfo_GetReleaseContentRequest
.
Unmarshal
(
m
,
b
)
...
...
@@ -451,7 +451,7 @@ func (m *GetReleaseContentResponse) Reset() { *m = GetReleaseContentResp
func
(
m
*
GetReleaseContentResponse
)
String
()
string
{
return
proto
.
CompactTextString
(
m
)
}
func
(
*
GetReleaseContentResponse
)
ProtoMessage
()
{}
func
(
*
GetReleaseContentResponse
)
Descriptor
()
([]
byte
,
[]
int
)
{
return
fileDescriptor_tiller_
bb72ee4a42494734
,
[]
int
{
6
}
return
fileDescriptor_tiller_
45351572bedcef6e
,
[]
int
{
6
}
}
func
(
m
*
GetReleaseContentResponse
)
XXX_Unmarshal
(
b
[]
byte
)
error
{
return
xxx_messageInfo_GetReleaseContentResponse
.
Unmarshal
(
m
,
b
)
...
...
@@ -519,7 +519,7 @@ func (m *UpdateReleaseRequest) Reset() { *m = UpdateReleaseRequest{} }
func
(
m
*
UpdateReleaseRequest
)
String
()
string
{
return
proto
.
CompactTextString
(
m
)
}
func
(
*
UpdateReleaseRequest
)
ProtoMessage
()
{}
func
(
*
UpdateReleaseRequest
)
Descriptor
()
([]
byte
,
[]
int
)
{
return
fileDescriptor_tiller_
bb72ee4a42494734
,
[]
int
{
7
}
return
fileDescriptor_tiller_
45351572bedcef6e
,
[]
int
{
7
}
}
func
(
m
*
UpdateReleaseRequest
)
XXX_Unmarshal
(
b
[]
byte
)
error
{
return
xxx_messageInfo_UpdateReleaseRequest
.
Unmarshal
(
m
,
b
)
...
...
@@ -649,7 +649,7 @@ func (m *UpdateReleaseResponse) Reset() { *m = UpdateReleaseResponse{} }
func
(
m
*
UpdateReleaseResponse
)
String
()
string
{
return
proto
.
CompactTextString
(
m
)
}
func
(
*
UpdateReleaseResponse
)
ProtoMessage
()
{}
func
(
*
UpdateReleaseResponse
)
Descriptor
()
([]
byte
,
[]
int
)
{
return
fileDescriptor_tiller_
bb72ee4a42494734
,
[]
int
{
8
}
return
fileDescriptor_tiller_
45351572bedcef6e
,
[]
int
{
8
}
}
func
(
m
*
UpdateReleaseResponse
)
XXX_Unmarshal
(
b
[]
byte
)
error
{
return
xxx_messageInfo_UpdateReleaseResponse
.
Unmarshal
(
m
,
b
)
...
...
@@ -707,7 +707,7 @@ func (m *RollbackReleaseRequest) Reset() { *m = RollbackReleaseRequest{}
func
(
m
*
RollbackReleaseRequest
)
String
()
string
{
return
proto
.
CompactTextString
(
m
)
}
func
(
*
RollbackReleaseRequest
)
ProtoMessage
()
{}
func
(
*
RollbackReleaseRequest
)
Descriptor
()
([]
byte
,
[]
int
)
{
return
fileDescriptor_tiller_
bb72ee4a42494734
,
[]
int
{
9
}
return
fileDescriptor_tiller_
45351572bedcef6e
,
[]
int
{
9
}
}
func
(
m
*
RollbackReleaseRequest
)
XXX_Unmarshal
(
b
[]
byte
)
error
{
return
xxx_messageInfo_RollbackReleaseRequest
.
Unmarshal
(
m
,
b
)
...
...
@@ -809,7 +809,7 @@ func (m *RollbackReleaseResponse) Reset() { *m = RollbackReleaseResponse
func
(
m
*
RollbackReleaseResponse
)
String
()
string
{
return
proto
.
CompactTextString
(
m
)
}
func
(
*
RollbackReleaseResponse
)
ProtoMessage
()
{}
func
(
*
RollbackReleaseResponse
)
Descriptor
()
([]
byte
,
[]
int
)
{
return
fileDescriptor_tiller_
bb72ee4a42494734
,
[]
int
{
10
}
return
fileDescriptor_tiller_
45351572bedcef6e
,
[]
int
{
10
}
}
func
(
m
*
RollbackReleaseResponse
)
XXX_Unmarshal
(
b
[]
byte
)
error
{
return
xxx_messageInfo_RollbackReleaseResponse
.
Unmarshal
(
m
,
b
)
...
...
@@ -874,7 +874,7 @@ func (m *InstallReleaseRequest) Reset() { *m = InstallReleaseRequest{} }
func
(
m
*
InstallReleaseRequest
)
String
()
string
{
return
proto
.
CompactTextString
(
m
)
}
func
(
*
InstallReleaseRequest
)
ProtoMessage
()
{}
func
(
*
InstallReleaseRequest
)
Descriptor
()
([]
byte
,
[]
int
)
{
return
fileDescriptor_tiller_
bb72ee4a42494734
,
[]
int
{
11
}
return
fileDescriptor_tiller_
45351572bedcef6e
,
[]
int
{
11
}
}
func
(
m
*
InstallReleaseRequest
)
XXX_Unmarshal
(
b
[]
byte
)
error
{
return
xxx_messageInfo_InstallReleaseRequest
.
Unmarshal
(
m
,
b
)
...
...
@@ -990,7 +990,7 @@ func (m *InstallReleaseResponse) Reset() { *m = InstallReleaseResponse{}
func
(
m
*
InstallReleaseResponse
)
String
()
string
{
return
proto
.
CompactTextString
(
m
)
}
func
(
*
InstallReleaseResponse
)
ProtoMessage
()
{}
func
(
*
InstallReleaseResponse
)
Descriptor
()
([]
byte
,
[]
int
)
{
return
fileDescriptor_tiller_
bb72ee4a42494734
,
[]
int
{
12
}
return
fileDescriptor_tiller_
45351572bedcef6e
,
[]
int
{
12
}
}
func
(
m
*
InstallReleaseResponse
)
XXX_Unmarshal
(
b
[]
byte
)
error
{
return
xxx_messageInfo_InstallReleaseResponse
.
Unmarshal
(
m
,
b
)
...
...
@@ -1038,7 +1038,7 @@ func (m *UninstallReleaseRequest) Reset() { *m = UninstallReleaseRequest
func
(
m
*
UninstallReleaseRequest
)
String
()
string
{
return
proto
.
CompactTextString
(
m
)
}
func
(
*
UninstallReleaseRequest
)
ProtoMessage
()
{}
func
(
*
UninstallReleaseRequest
)
Descriptor
()
([]
byte
,
[]
int
)
{
return
fileDescriptor_tiller_
bb72ee4a42494734
,
[]
int
{
13
}
return
fileDescriptor_tiller_
45351572bedcef6e
,
[]
int
{
13
}
}
func
(
m
*
UninstallReleaseRequest
)
XXX_Unmarshal
(
b
[]
byte
)
error
{
return
xxx_messageInfo_UninstallReleaseRequest
.
Unmarshal
(
m
,
b
)
...
...
@@ -1108,7 +1108,7 @@ func (m *UninstallReleaseResponse) Reset() { *m = UninstallReleaseRespon
func
(
m
*
UninstallReleaseResponse
)
String
()
string
{
return
proto
.
CompactTextString
(
m
)
}
func
(
*
UninstallReleaseResponse
)
ProtoMessage
()
{}
func
(
*
UninstallReleaseResponse
)
Descriptor
()
([]
byte
,
[]
int
)
{
return
fileDescriptor_tiller_
bb72ee4a42494734
,
[]
int
{
14
}
return
fileDescriptor_tiller_
45351572bedcef6e
,
[]
int
{
14
}
}
func
(
m
*
UninstallReleaseResponse
)
XXX_Unmarshal
(
b
[]
byte
)
error
{
return
xxx_messageInfo_UninstallReleaseResponse
.
Unmarshal
(
m
,
b
)
...
...
@@ -1153,7 +1153,7 @@ func (m *GetVersionRequest) Reset() { *m = GetVersionRequest{} }
func
(
m
*
GetVersionRequest
)
String
()
string
{
return
proto
.
CompactTextString
(
m
)
}
func
(
*
GetVersionRequest
)
ProtoMessage
()
{}
func
(
*
GetVersionRequest
)
Descriptor
()
([]
byte
,
[]
int
)
{
return
fileDescriptor_tiller_
bb72ee4a42494734
,
[]
int
{
15
}
return
fileDescriptor_tiller_
45351572bedcef6e
,
[]
int
{
15
}
}
func
(
m
*
GetVersionRequest
)
XXX_Unmarshal
(
b
[]
byte
)
error
{
return
xxx_messageInfo_GetVersionRequest
.
Unmarshal
(
m
,
b
)
...
...
@@ -1184,7 +1184,7 @@ func (m *GetVersionResponse) Reset() { *m = GetVersionResponse{} }
func
(
m
*
GetVersionResponse
)
String
()
string
{
return
proto
.
CompactTextString
(
m
)
}
func
(
*
GetVersionResponse
)
ProtoMessage
()
{}
func
(
*
GetVersionResponse
)
Descriptor
()
([]
byte
,
[]
int
)
{
return
fileDescriptor_tiller_
bb72ee4a42494734
,
[]
int
{
16
}
return
fileDescriptor_tiller_
45351572bedcef6e
,
[]
int
{
16
}
}
func
(
m
*
GetVersionResponse
)
XXX_Unmarshal
(
b
[]
byte
)
error
{
return
xxx_messageInfo_GetVersionResponse
.
Unmarshal
(
m
,
b
)
...
...
@@ -1226,7 +1226,7 @@ func (m *GetHistoryRequest) Reset() { *m = GetHistoryRequest{} }
func
(
m
*
GetHistoryRequest
)
String
()
string
{
return
proto
.
CompactTextString
(
m
)
}
func
(
*
GetHistoryRequest
)
ProtoMessage
()
{}
func
(
*
GetHistoryRequest
)
Descriptor
()
([]
byte
,
[]
int
)
{
return
fileDescriptor_tiller_
bb72ee4a42494734
,
[]
int
{
17
}
return
fileDescriptor_tiller_
45351572bedcef6e
,
[]
int
{
17
}
}
func
(
m
*
GetHistoryRequest
)
XXX_Unmarshal
(
b
[]
byte
)
error
{
return
xxx_messageInfo_GetHistoryRequest
.
Unmarshal
(
m
,
b
)
...
...
@@ -1272,7 +1272,7 @@ func (m *GetHistoryResponse) Reset() { *m = GetHistoryResponse{} }
func
(
m
*
GetHistoryResponse
)
String
()
string
{
return
proto
.
CompactTextString
(
m
)
}
func
(
*
GetHistoryResponse
)
ProtoMessage
()
{}
func
(
*
GetHistoryResponse
)
Descriptor
()
([]
byte
,
[]
int
)
{
return
fileDescriptor_tiller_
bb72ee4a42494734
,
[]
int
{
18
}
return
fileDescriptor_tiller_
45351572bedcef6e
,
[]
int
{
18
}
}
func
(
m
*
GetHistoryResponse
)
XXX_Unmarshal
(
b
[]
byte
)
error
{
return
xxx_messageInfo_GetHistoryResponse
.
Unmarshal
(
m
,
b
)
...
...
@@ -1308,7 +1308,9 @@ type TestReleaseRequest struct {
// cleanup specifies whether or not to attempt pod deletion after test completes
Cleanup
bool
`protobuf:"varint,3,opt,name=cleanup,proto3" json:"cleanup,omitempty"`
// parallel specifies whether or not to run test pods in parallel
Parallel
bool
`protobuf:"varint,4,opt,name=parallel,proto3" json:"parallel,omitempty"`
Parallel
bool
`protobuf:"varint,4,opt,name=parallel,proto3" json:"parallel,omitempty"`
// maximum number of test pods to run in parallel
MaxParallel
uint32
`protobuf:"varint,5,opt,name=max_parallel,json=maxParallel,proto3" json:"max_parallel,omitempty"`
XXX_NoUnkeyedLiteral
struct
{}
`json:"-"`
XXX_unrecognized
[]
byte
`json:"-"`
XXX_sizecache
int32
`json:"-"`
...
...
@@ -1318,7 +1320,7 @@ func (m *TestReleaseRequest) Reset() { *m = TestReleaseRequest{} }
func
(
m
*
TestReleaseRequest
)
String
()
string
{
return
proto
.
CompactTextString
(
m
)
}
func
(
*
TestReleaseRequest
)
ProtoMessage
()
{}
func
(
*
TestReleaseRequest
)
Descriptor
()
([]
byte
,
[]
int
)
{
return
fileDescriptor_tiller_
bb72ee4a42494734
,
[]
int
{
19
}
return
fileDescriptor_tiller_
45351572bedcef6e
,
[]
int
{
19
}
}
func
(
m
*
TestReleaseRequest
)
XXX_Unmarshal
(
b
[]
byte
)
error
{
return
xxx_messageInfo_TestReleaseRequest
.
Unmarshal
(
m
,
b
)
...
...
@@ -1366,6 +1368,13 @@ func (m *TestReleaseRequest) GetParallel() bool {
return
false
}
func
(
m
*
TestReleaseRequest
)
GetMaxParallel
()
uint32
{
if
m
!=
nil
{
return
m
.
MaxParallel
}
return
0
}
// TestReleaseResponse represents a message from executing a test
type
TestReleaseResponse
struct
{
Msg
string
`protobuf:"bytes,1,opt,name=msg,proto3" json:"msg,omitempty"`
...
...
@@ -1379,7 +1388,7 @@ func (m *TestReleaseResponse) Reset() { *m = TestReleaseResponse{} }
func
(
m
*
TestReleaseResponse
)
String
()
string
{
return
proto
.
CompactTextString
(
m
)
}
func
(
*
TestReleaseResponse
)
ProtoMessage
()
{}
func
(
*
TestReleaseResponse
)
Descriptor
()
([]
byte
,
[]
int
)
{
return
fileDescriptor_tiller_
bb72ee4a42494734
,
[]
int
{
20
}
return
fileDescriptor_tiller_
45351572bedcef6e
,
[]
int
{
20
}
}
func
(
m
*
TestReleaseResponse
)
XXX_Unmarshal
(
b
[]
byte
)
error
{
return
xxx_messageInfo_TestReleaseResponse
.
Unmarshal
(
m
,
b
)
...
...
@@ -1889,92 +1898,93 @@ var _ReleaseService_serviceDesc = grpc.ServiceDesc{
Metadata
:
"hapi/services/tiller.proto"
,
}
func
init
()
{
proto
.
RegisterFile
(
"hapi/services/tiller.proto"
,
fileDescriptor_tiller_bb72ee4a42494734
)
}
var
fileDescriptor_tiller_bb72ee4a42494734
=
[]
byte
{
// 1337 bytes of a gzipped FileDescriptorProto
0x1f
,
0x8b
,
0x08
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x02
,
0xff
,
0x9c
,
0x58
,
0xdd
,
0x72
,
0xdb
,
0x44
,
0x14
,
0x8e
,
0x2d
,
0xff
,
0x1e
,
0x27
,
0xae
,
0xbb
,
0x4d
,
0x13
,
0xd5
,
0x14
,
0x26
,
0x88
,
0xa1
,
0x75
,
0x0b
,
0x75
,
0x20
,
0x70
,
0xc3
,
0x0c
,
0xc3
,
0x4c
,
0xea
,
0x86
,
0xa4
,
0x10
,
0xd2
,
0x19
,
0xb9
,
0x2d
,
0x33
,
0xcc
,
0x30
,
0x1e
,
0xc5
,
0x5e
,
0xb7
,
0xa2
,
0xb2
,
0xd6
,
0x68
,
0x57
,
0xa1
,
0x79
,
0x04
,
0x2e
,
0x79
,
0x07
,
0xae
,
0x79
,
0x06
,
0x6e
,
0x79
,
0x06
,
0x5e
,
0x86
,
0xd9
,
0x3f
,
0x45
,
0x2b
,
0x4b
,
0xae
,
0xc8
,
0x4d
,
0xac
,
0xdd
,
0x73
,
0xf6
,
0xfc
,
0x7c
,
0xdf
,
0x9e
,
0xb3
,
0x67
,
0x02
,
0xfd
,
0xd7
,
0xde
,
0xd2
,
0xdf
,
0xa7
,
0x38
,
0xba
,
0xf0
,
0xa7
,
0x98
,
0xee
,
0x33
,
0x3f
,
0x08
,
0x70
,
0x34
,
0x5c
,
0x46
,
0x84
,
0x11
,
0xb4
,
0xcd
,
0x65
,
0x43
,
0x2d
,
0x1b
,
0x4a
,
0x59
,
0x7f
,
0x47
,
0x9c
,
0x98
,
0xbe
,
0xf6
,
0x22
,
0x26
,
0xff
,
0x4a
,
0xed
,
0xfe
,
0x6e
,
0x7a
,
0x9f
,
0x84
,
0x73
,
0xff
,
0x95
,
0x12
,
0x48
,
0x17
,
0x11
,
0x0e
,
0xb0
,
0x47
,
0xb1
,
0xfe
,
0x35
,
0x0e
,
0x69
,
0x99
,
0x1f
,
0xce
,
0x89
,
0x12
,
0xbc
,
0x67
,
0x08
,
0x18
,
0xa6
,
0x6c
,
0x12
,
0xc5
,
0xa1
,
0x12
,
0xde
,
0x31
,
0x84
,
0x94
,
0x79
,
0x2c
,
0xa6
,
0x86
,
0xb3
,
0x0b
,
0x1c
,
0x51
,
0x9f
,
0x84
,
0xfa
,
0x57
,
0xca
,
0x9c
,
0xbf
,
0xab
,
0x70
,
0xeb
,
0xd4
,
0xa7
,
0xcc
,
0x95
,
0x07
,
0xa9
,
0x8b
,
0x7f
,
0x8d
,
0x31
,
0x65
,
0x68
,
0x1b
,
0xea
,
0x81
,
0xbf
,
0xf0
,
0x99
,
0x5d
,
0xd9
,
0xab
,
0x0c
,
0x2c
,
0x57
,
0x2e
,
0xd0
,
0x0e
,
0x34
,
0xc8
,
0x7c
,
0x4e
,
0x31
,
0xb3
,
0xab
,
0x7b
,
0x95
,
0x41
,
0xdb
,
0x55
,
0x2b
,
0xf4
,
0x0d
,
0x34
,
0x29
,
0x89
,
0xd8
,
0xe4
,
0xfc
,
0xd2
,
0xb6
,
0xf6
,
0x2a
,
0x83
,
0xee
,
0xc1
,
0xc7
,
0xc3
,
0x3c
,
0x9c
,
0x86
,
0xdc
,
0xd3
,
0x98
,
0x44
,
0x6c
,
0xc8
,
0xff
,
0x3c
,
0xbe
,
0x74
,
0x1b
,
0x54
,
0xfc
,
0x72
,
0xbb
,
0x73
,
0x3f
,
0x60
,
0x38
,
0xb2
,
0x6b
,
0xd2
,
0xae
,
0x5c
,
0xa1
,
0x63
,
0x00
,
0x61
,
0x97
,
0x44
,
0x33
,
0x1c
,
0xd9
,
0x75
,
0x61
,
0x7a
,
0x50
,
0xc2
,
0xf4
,
0x33
,
0xae
,
0xef
,
0xb6
,
0xa9
,
0xfe
,
0x44
,
0x5f
,
0xc3
,
0xa6
,
0x84
,
0x64
,
0x32
,
0x25
,
0x33
,
0x4c
,
0xed
,
0xc6
,
0x9e
,
0x35
,
0xe8
,
0x1e
,
0xdc
,
0x91
,
0xa6
,
0x34
,
0xfc
,
0x63
,
0x09
,
0xda
,
0x88
,
0xcc
,
0xb0
,
0xdb
,
0x91
,
0xea
,
0xfc
,
0x9b
,
0xa2
,
0xbb
,
0xd0
,
0x0e
,
0xbd
,
0x05
,
0xa6
,
0x4b
,
0x6f
,
0x8a
,
0xed
,
0xa6
,
0x88
,
0xf0
,
0x6a
,
0xc3
,
0x09
,
0xa1
,
0xa5
,
0x9d
,
0x3b
,
0x8f
,
0xa1
,
0x21
,
0x53
,
0x43
,
0x1d
,
0x68
,
0xbe
,
0x38
,
0xfb
,
0xfe
,
0xec
,
0xd9
,
0x8f
,
0x67
,
0xbd
,
0x0d
,
0xd4
,
0x82
,
0xda
,
0xd9
,
0xe1
,
0x0f
,
0x47
,
0xbd
,
0x0a
,
0xba
,
0x09
,
0x5b
,
0xa7
,
0x87
,
0xe3
,
0xe7
,
0x13
,
0xf7
,
0xe8
,
0xf4
,
0xe8
,
0x70
,
0x7c
,
0xf4
,
0xa4
,
0x57
,
0x45
,
0x5d
,
0x80
,
0xd1
,
0xc9
,
0xa1
,
0xfb
,
0x7c
,
0x22
,
0x54
,
0x2c
,
0xe7
,
0x03
,
0x68
,
0x27
,
0x39
,
0xa0
,
0x26
,
0x58
,
0x87
,
0xe3
,
0x91
,
0x34
,
0xf1
,
0xe4
,
0x68
,
0x3c
,
0xea
,
0x55
,
0x9c
,
0xdf
,
0x2b
,
0xb0
,
0x6d
,
0x52
,
0x46
,
0x97
,
0x24
,
0xa4
,
0x98
,
0x73
,
0x36
,
0x25
,
0x71
,
0x98
,
0x70
,
0x26
,
0x16
,
0x08
,
0x41
,
0x2d
,
0xc4
,
0x6f
,
0x35
,
0x63
,
0xe2
,
0x9b
,
0x6b
,
0x32
,
0xc2
,
0xbc
,
0x40
,
0xb0
,
0x65
,
0xb9
,
0x72
,
0x81
,
0x3e
,
0x87
,
0x96
,
0x82
,
0x82
,
0xda
,
0xb5
,
0x3d
,
0x6b
,
0xd0
,
0x39
,
0xb8
,
0x6d
,
0x02
,
0xa4
,
0x3c
,
0xba
,
0x89
,
0x9a
,
0x73
,
0x0c
,
0xbb
,
0xc7
,
0x58
,
0x47
,
0x22
,
0xf1
,
0xd3
,
0x37
,
0x88
,
0xfb
,
0xf5
,
0x16
,
0x58
,
0x04
,
0xc3
,
0xfd
,
0x7a
,
0x0b
,
0x8c
,
0x6c
,
0x68
,
0xaa
,
0xeb
,
0x27
,
0xc2
,
0xa9
,
0xbb
,
0x7a
,
0xe9
,
0x30
,
0xb0
,
0x57
,
0x0d
,
0xa9
,
0xbc
,
0xf2
,
0x2c
,
0xdd
,
0x83
,
0x1a
,
0xaf
,
0x0c
,
0x61
,
0xa6
,
0x73
,
0x80
,
0xcc
,
0x38
,
0x9f
,
0x86
,
0x73
,
0xe2
,
0x0a
,
0xb9
,
0x49
,
0x9d
,
0x95
,
0xa5
,
0xee
,
0x24
,
0xed
,
0x75
,
0x44
,
0x42
,
0x86
,
0x43
,
0x76
,
0xbd
,
0xf8
,
0x4f
,
0xe1
,
0x4e
,
0x8e
,
0x25
,
0x95
,
0xc0
,
0x3e
,
0x34
,
0x55
,
0x68
,
0xc2
,
0x5a
,
0x21
,
0xae
,
0x5a
,
0xcb
,
0xf9
,
0xc7
,
0x82
,
0xed
,
0x17
,
0xcb
,
0x99
,
0xc7
,
0xb0
,
0x16
,
0xad
,
0x09
,
0xea
,
0x3e
,
0xd4
,
0x45
,
0x87
,
0x51
,
0x58
,
0xdc
,
0x94
,
0xb6
,
0x65
,
0x1b
,
0x1a
,
0xf1
,
0xbf
,
0xae
,
0x94
,
0xa3
,
0x87
,
0xd0
,
0xb8
,
0xf0
,
0x82
,
0x18
,
0x53
,
0x01
,
0x44
,
0x82
,
0x9a
,
0xd2
,
0x14
,
0xed
,
0xc9
,
0x55
,
0x1a
,
0x68
,
0x17
,
0x9a
,
0xb3
,
0xe8
,
0x92
,
0xf7
,
0x17
,
0x51
,
0x92
,
0x2d
,
0xb7
,
0x31
,
0x8b
,
0x2e
,
0xdd
,
0x38
,
0x44
,
0x1f
,
0xc1
,
0xd6
,
0xcc
,
0xa7
,
0xde
,
0x79
,
0x80
,
0x27
,
0xaf
,
0x09
,
0x79
,
0x43
,
0x45
,
0x55
,
0xb6
,
0xdc
,
0x4d
,
0xb5
,
0x79
,
0xc2
,
0xf7
,
0x50
,
0x9f
,
0xdf
,
0xa4
,
0x69
,
0x84
,
0x3d
,
0x86
,
0xed
,
0x86
,
0x90
,
0x27
,
0x6b
,
0x8e
,
0x21
,
0xf3
,
0x17
,
0x98
,
0xc4
,
0x4c
,
0x94
,
0x92
,
0xe5
,
0xea
,
0x25
,
0xfa
,
0x10
,
0x36
,
0x23
,
0x4c
,
0x31
,
0x9b
,
0xa8
,
0x28
,
0x5b
,
0xe2
,
0x64
,
0x47
,
0xec
,
0xbd
,
0x94
,
0x61
,
0x21
,
0xa8
,
0xfd
,
0xe6
,
0xf9
,
0xcc
,
0x6e
,
0x0b
,
0x91
,
0xf8
,
0x96
,
0xc7
,
0x62
,
0x8a
,
0xf5
,
0x31
,
0xd0
,
0xc7
,
0x62
,
0x8a
,
0xd5
,
0xb1
,
0x6d
,
0xa8
,
0xcf
,
0x49
,
0x34
,
0xc5
,
0x76
,
0x47
,
0xc8
,
0xe4
,
0x02
,
0xed
,
0x41
,
0x67
,
0x86
,
0xe9
,
0x34
,
0xf2
,
0x97
,
0x8c
,
0x33
,
0xba
,
0x29
,
0x30
,
0x4d
,
0x6f
,
0xf1
,
0x3c
,
0x68
,
0x7c
,
0x7e
,
0x46
,
0x18
,
0xa6
,
0xf6
,
0x96
,
0xcc
,
0x43
,
0xaf
,
0xd1
,
0x3d
,
0xb8
,
0x31
,
0x0d
,
0xb0
,
0x17
,
0xc6
,
0xcb
,
0x09
,
0x09
,
0x27
,
0x73
,
0xcf
,
0x0f
,
0xec
,
0xae
,
0x50
,
0xd9
,
0x52
,
0xdb
,
0xcf
,
0xc2
,
0x6f
,
0x3d
,
0x3f
,
0x70
,
0x4e
,
0xe0
,
0x76
,
0x86
,
0xca
,
0xeb
,
0xde
,
0x8a
,
0xbf
,
0xaa
,
0xb0
,
0xe3
,
0x92
,
0x20
,
0x38
,
0xf7
,
0xa6
,
0x6f
,
0x4a
,
0xdc
,
0x8b
,
0x14
,
0x85
,
0xd5
,
0xf5
,
0x14
,
0x5a
,
0x39
,
0x14
,
0xa6
,
0xae
,
0x7a
,
0xcd
,
0xb8
,
0xea
,
0x06
,
0xb9
,
0xf5
,
0x62
,
0x72
,
0x1b
,
0x26
,
0xb9
,
0x9a
,
0xb9
,
0x66
,
0x8a
,
0xb9
,
0x84
,
0x96
,
0xd6
,
0x1a
,
0x5a
,
0xda
,
0xab
,
0xb4
,
0xe4
,
0x40
,
0x0f
,
0x79
,
0xd0
,
0x7f
,
0x07
,
0xbb
,
0x2b
,
0x78
,
0x5d
,
0x17
,
0xfc
,
0x3f
,
0x2c
,
0xb8
,
0xfd
,
0x34
,
0xa4
,
0xcc
,
0x0b
,
0x82
,
0x0c
,
0xf6
,
0x49
,
0xfd
,
0x55
,
0x4a
,
0xd7
,
0x5f
,
0xf5
,
0xff
,
0xd4
,
0x9f
,
0x65
,
0x90
,
0xa7
,
0x99
,
0xae
,
0xa5
,
0x98
,
0x2e
,
0x55
,
0x93
,
0x46
,
0x27
,
0x6c
,
0x64
,
0x3a
,
0x21
,
0x7a
,
0x1f
,
0x40
,
0x16
,
0x91
,
0x30
,
0x2e
,
0x49
,
0x6a
,
0x8b
,
0x9d
,
0x33
,
0xd5
,
0xf8
,
0x34
,
0xaf
,
0xad
,
0x7c
,
0x5e
,
0xd3
,
0x15
,
0x39
,
0x80
,
0x9e
,
0x8e
,
0x67
,
0x1a
,
0xcd
,
0x44
,
0x4c
,
0x8a
,
0xa0
,
0xae
,
0xda
,
0x1f
,
0x45
,
0x33
,
0x1e
,
0x55
,
0x96
,
0xeb
,
0xce
,
0xfa
,
0x12
,
0xdc
,
0x34
,
0x4b
,
0xd0
,
0x79
,
0x0a
,
0x3b
,
0x59
,
0x4a
,
0xae
,
0x4b
,
0xef
,
0x9f
,
0x15
,
0xd8
,
0x7d
,
0x11
,
0xfa
,
0xb9
,
0x04
,
0xe7
,
0x15
,
0xd7
,
0x0a
,
0xe4
,
0xd5
,
0x1c
,
0xc8
,
0xb7
,
0xa1
,
0xbe
,
0x8c
,
0xa3
,
0x57
,
0x58
,
0x51
,
0x28
,
0x17
,
0x69
,
0x2c
,
0x6b
,
0x26
,
0x96
,
0x19
,
0x34
,
0xea
,
0x2b
,
0x68
,
0x38
,
0x13
,
0xb0
,
0x57
,
0xa3
,
0xbc
,
0x66
,
0xce
,
0x3c
,
0xaf
,
0xe4
,
0x0d
,
0x6d
,
0xcb
,
0xf7
,
0xd2
,
0xb9
,
0x05
,
0x37
,
0x8f
,
0x31
,
0x7b
,
0x29
,
0x4b
,
0x5d
,
0x01
,
0xe0
,
0x1c
,
0x01
,
0x4a
,
0x6f
,
0x5e
,
0xf9
,
0x53
,
0x5b
,
0xa6
,
0x3f
,
0x3d
,
0x60
,
0x6a
,
0x7d
,
0xad
,
0xe5
,
0x7c
,
0x25
,
0x6c
,
0x9f
,
0xf8
,
0x94
,
0x91
,
0xe8
,
0x72
,
0x1d
,
0xb8
,
0x3d
,
0xb0
,
0x16
,
0xde
,
0x5b
,
0xf5
,
0xc4
,
0xf2
,
0x4f
,
0xe7
,
0x58
,
0x44
,
0x90
,
0x1c
,
0x55
,
0x11
,
0xa4
,
0x07
,
0x96
,
0x4a
,
0xb9
,
0x81
,
0xe5
,
0x2d
,
0xa0
,
0xe7
,
0x38
,
0x99
,
0x9d
,
0xde
,
0xf1
,
0xd6
,
0x6b
,
0x9a
,
0xaa
,
0x26
,
0x4d
,
0x36
,
0x34
,
0x55
,
0x9f
,
0x51
,
0xc4
,
0xea
,
0x25
,
0xbf
,
0xac
,
0x4b
,
0x2f
,
0xf2
,
0x82
,
0x00
,
0x07
,
0xea
,
0xd9
,
0x4c
,
0xd6
,
0xce
,
0xcf
,
0x70
,
0xcb
,
0xf0
,
0xac
,
0x72
,
0xe0
,
0xb9
,
0xd2
,
0x57
,
0xca
,
0x33
,
0xff
,
0x44
,
0x5f
,
0x42
,
0x43
,
0x0e
,
0x9f
,
0xc2
,
0x6f
,
0xf7
,
0xe0
,
0xae
,
0x99
,
0x93
,
0x30
,
0x12
,
0x87
,
0x6a
,
0x5a
,
0x75
,
0x95
,
0xee
,
0xc1
,
0xbf
,
0x2d
,
0xe8
,
0xea
,
0xf1
,
0x49
,
0x8e
,
0xc6
,
0xc8
,
0x87
,
0xcd
,
0xf4
,
0x9c
,
0x88
,
0x1e
,
0x14
,
0x4f
,
0xce
,
0x99
,
0xf1
,
0xbf
,
0xff
,
0xb0
,
0x8c
,
0xaa
,
0xcc
,
0xc0
,
0xd9
,
0xf8
,
0xac
,
0x82
,
0x28
,
0xf4
,
0xb2
,
0xe3
,
0x1b
,
0x7a
,
0x94
,
0x6f
,
0xa3
,
0x60
,
0x5e
,
0xec
,
0x0f
,
0xcb
,
0xaa
,
0x6b
,
0xb7
,
0xe8
,
0x42
,
0xdc
,
0x27
,
0x73
,
0xe6
,
0x42
,
0xef
,
0x34
,
0x63
,
0x8e
,
0x79
,
0xfd
,
0xfd
,
0xd2
,
0xfa
,
0x89
,
0xdf
,
0x5f
,
0x60
,
0xcb
,
0x78
,
0xd1
,
0x51
,
0x01
,
0x5a
,
0x79
,
0x13
,
0x5c
,
0xff
,
0x93
,
0x52
,
0xba
,
0x89
,
0xaf
,
0x05
,
0x74
,
0xcd
,
0x16
,
0x87
,
0x0a
,
0x0c
,
0xe4
,
0xbe
,
0x4d
,
0xfd
,
0x4f
,
0xcb
,
0x29
,
0x27
,
0xee
,
0x28
,
0xf4
,
0xb2
,
0xfd
,
0xa5
,
0x88
,
0xc7
,
0x82
,
0x6e
,
0x59
,
0xc4
,
0x63
,
0x51
,
0xdb
,
0x72
,
0x36
,
0x90
,
0x07
,
0x70
,
0xd5
,
0x5e
,
0xd0
,
0xfd
,
0x42
,
0x42
,
0xcc
,
0xae
,
0xd4
,
0x1f
,
0xbc
,
0x5b
,
0x31
,
0x71
,
0xb1
,
0x84
,
0x1b
,
0x99
,
0x49
,
0x00
,
0x15
,
0x40
,
0x93
,
0x3f
,
0x60
,
0xf5
,
0x1f
,
0x95
,
0xd4
,
0xce
,
0x24
,
0xa5
,
0x3a
,
0xd6
,
0x9a
,
0xa4
,
0xcc
,
0x76
,
0xb8
,
0x26
,
0xa9
,
0x4c
,
0xf3
,
0x73
,
0x36
,
0x90
,
0x0f
,
0x5d
,
0x37
,
0x0e
,
0x95
,
0x6b
,
0xde
,
0x16
,
0x50
,
0xc1
,
0xe9
,
0xd5
,
0x8e
,
0xd7
,
0x7f
,
0x50
,
0x42
,
0xf3
,
0xaa
,
0xbe
,
0x1f
,
0xc3
,
0x4f
,
0x2d
,
0xad
,
0x7a
,
0xde
,
0x10
,
0xff
,
0x39
,
0xf8
,
0xe2
,
0xbf
,
0x00
,
0x00
,
0x00
,
0xff
,
0xff
,
0x20
,
0xcd
,
0x9e
,
0x3a
,
0x27
,
0x11
,
0x00
,
0x00
,
func
init
()
{
proto
.
RegisterFile
(
"hapi/services/tiller.proto"
,
fileDescriptor_tiller_45351572bedcef6e
)
}
var
fileDescriptor_tiller_45351572bedcef6e
=
[]
byte
{
// 1357 bytes of a gzipped FileDescriptorProto
0x1f
,
0x8b
,
0x08
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x02
,
0xff
,
0x9c
,
0x58
,
0xdd
,
0x6e
,
0x1b
,
0x45
,
0x14
,
0x8e
,
0xbd
,
0xfe
,
0x3d
,
0x4e
,
0x5c
,
0x77
,
0x9a
,
0x26
,
0x5b
,
0x53
,
0x50
,
0x58
,
0x44
,
0xeb
,
0x16
,
0xea
,
0x40
,
0xe0
,
0x06
,
0x09
,
0x21
,
0xa5
,
0x6e
,
0x48
,
0x0a
,
0x21
,
0x45
,
0x9b
,
0xb6
,
0x48
,
0x48
,
0xc8
,
0x9a
,
0xd8
,
0xe3
,
0x76
,
0xe9
,
0x7a
,
0xc7
,
0xec
,
0xcc
,
0x86
,
0xe4
,
0x11
,
0xb8
,
0xe4
,
0x9a
,
0x5b
,
0xae
,
0x79
,
0x06
,
0x6e
,
0x79
,
0x06
,
0x5e
,
0x06
,
0xcd
,
0xdf
,
0xc6
,
0xb3
,
0xde
,
0x75
,
0x4d
,
0x6e
,
0xe2
,
0x9d
,
0x39
,
0x67
,
0xce
,
0xcf
,
0xf7
,
0xcd
,
0x39
,
0x73
,
0x5a
,
0xe8
,
0xbe
,
0xc6
,
0xb3
,
0x60
,
0x97
,
0x91
,
0xf8
,
0x3c
,
0x18
,
0x11
,
0xb6
,
0xcb
,
0x83
,
0x30
,
0x24
,
0x71
,
0x7f
,
0x16
,
0x53
,
0x4e
,
0xd1
,
0xa6
,
0x90
,
0xf5
,
0x8d
,
0xac
,
0xaf
,
0x64
,
0xdd
,
0x2d
,
0x79
,
0x62
,
0xf4
,
0x1a
,
0xc7
,
0x5c
,
0xfd
,
0x55
,
0xda
,
0xdd
,
0xed
,
0xf9
,
0x7d
,
0x1a
,
0x4d
,
0x82
,
0x57
,
0x5a
,
0xa0
,
0x5c
,
0xc4
,
0x24
,
0x24
,
0x98
,
0x11
,
0xf3
,
0x6b
,
0x1d
,
0x32
,
0xb2
,
0x20
,
0x9a
,
0x50
,
0x2d
,
0x78
,
0xc7
,
0x12
,
0x70
,
0xc2
,
0xf8
,
0x30
,
0x4e
,
0x22
,
0x2d
,
0xbc
,
0x63
,
0x09
,
0x19
,
0xc7
,
0x3c
,
0x61
,
0x96
,
0xb3
,
0x73
,
0x12
,
0xb3
,
0x80
,
0x46
,
0xe6
,
0x57
,
0xc9
,
0xbc
,
0xbf
,
0xcb
,
0x70
,
0xeb
,
0x38
,
0x60
,
0xdc
,
0x57
,
0x07
,
0x99
,
0x4f
,
0x7e
,
0x49
,
0x08
,
0xe3
,
0x68
,
0x13
,
0xaa
,
0x61
,
0x30
,
0x0d
,
0xb8
,
0x5b
,
0xda
,
0x29
,
0xf5
,
0x1c
,
0x5f
,
0x2d
,
0xd0
,
0x16
,
0xd4
,
0xe8
,
0x64
,
0xc2
,
0x08
,
0x77
,
0xcb
,
0x3b
,
0xa5
,
0x5e
,
0xd3
,
0xd7
,
0x2b
,
0xf4
,
0x15
,
0xd4
,
0x19
,
0x8d
,
0xf9
,
0xf0
,
0xec
,
0xd2
,
0x75
,
0x76
,
0x4a
,
0xbd
,
0xf6
,
0xde
,
0x87
,
0xfd
,
0x3c
,
0x9c
,
0xfa
,
0xc2
,
0xd3
,
0x29
,
0x8d
,
0x79
,
0x5f
,
0xfc
,
0x79
,
0x7c
,
0xe9
,
0xd7
,
0x98
,
0xfc
,
0x15
,
0x76
,
0x27
,
0x41
,
0xc8
,
0x49
,
0xec
,
0x56
,
0x94
,
0x5d
,
0xb5
,
0x42
,
0x87
,
0x00
,
0xd2
,
0x2e
,
0x8d
,
0xc7
,
0x24
,
0x76
,
0xab
,
0xd2
,
0x74
,
0x6f
,
0x05
,
0xd3
,
0xcf
,
0x84
,
0xbe
,
0xdf
,
0x64
,
0xe6
,
0x13
,
0x7d
,
0x09
,
0xeb
,
0x0a
,
0x92
,
0xe1
,
0x88
,
0x8e
,
0x09
,
0x73
,
0x6b
,
0x3b
,
0x4e
,
0xaf
,
0xbd
,
0x77
,
0x47
,
0x99
,
0x32
,
0xf0
,
0x9f
,
0x2a
,
0xd0
,
0x06
,
0x74
,
0x4c
,
0xfc
,
0x96
,
0x52
,
0x17
,
0xdf
,
0x0c
,
0xdd
,
0x85
,
0x66
,
0x84
,
0xa7
,
0x84
,
0xcd
,
0xf0
,
0x88
,
0xb8
,
0x75
,
0x19
,
0xe1
,
0xd5
,
0x86
,
0x17
,
0x41
,
0xc3
,
0x38
,
0xf7
,
0x1e
,
0x43
,
0x4d
,
0xa5
,
0x86
,
0x5a
,
0x50
,
0x7f
,
0x71
,
0xf2
,
0xed
,
0xc9
,
0xb3
,
0x1f
,
0x4e
,
0x3a
,
0x6b
,
0xa8
,
0x01
,
0x95
,
0x93
,
0xfd
,
0xef
,
0x0e
,
0x3a
,
0x25
,
0x74
,
0x13
,
0x36
,
0x8e
,
0xf7
,
0x4f
,
0x9f
,
0x0f
,
0xfd
,
0x83
,
0xe3
,
0x83
,
0xfd
,
0xd3
,
0x83
,
0x27
,
0x9d
,
0x32
,
0x6a
,
0x03
,
0x0c
,
0x8e
,
0xf6
,
0xfd
,
0xe7
,
0x43
,
0xa9
,
0xe2
,
0x78
,
0xef
,
0x41
,
0x33
,
0xcd
,
0x01
,
0xd5
,
0xc1
,
0xd9
,
0x3f
,
0x1d
,
0x28
,
0x13
,
0x4f
,
0x0e
,
0x4e
,
0x07
,
0x9d
,
0x92
,
0xf7
,
0x5b
,
0x09
,
0x36
,
0x6d
,
0xca
,
0xd8
,
0x8c
,
0x46
,
0x8c
,
0x08
,
0xce
,
0x46
,
0x34
,
0x89
,
0x52
,
0xce
,
0xe4
,
0x02
,
0x21
,
0xa8
,
0x44
,
0xe4
,
0xc2
,
0x30
,
0x26
,
0xbf
,
0x85
,
0x26
,
0xa7
,
0x1c
,
0x87
,
0x92
,
0x2d
,
0xc7
,
0x57
,
0x0b
,
0xf4
,
0x29
,
0x34
,
0x34
,
0x14
,
0xcc
,
0xad
,
0xec
,
0x38
,
0xbd
,
0xd6
,
0xde
,
0x6d
,
0x1b
,
0x20
,
0xed
,
0xd1
,
0x4f
,
0xd5
,
0xbc
,
0x43
,
0xd8
,
0x3e
,
0x24
,
0x26
,
0x12
,
0x85
,
0x9f
,
0xb9
,
0x41
,
0xc2
,
0x2f
,
0x9e
,
0x12
,
0x19
,
0x8c
,
0xf0
,
0x8b
,
0xa7
,
0x04
,
0xb9
,
0x50
,
0xd7
,
0xd7
,
0x4f
,
0x86
,
0x53
,
0xf5
,
0xcd
,
0xd2
,
0xe3
,
0xe0
,
0x2e
,
0x1a
,
0xd2
,
0x79
,
0xe5
,
0x59
,
0xba
,
0x07
,
0x15
,
0x51
,
0x19
,
0xd2
,
0x4c
,
0x6b
,
0x0f
,
0xd9
,
0x71
,
0x3e
,
0x8d
,
0x26
,
0xd4
,
0x97
,
0x72
,
0x9b
,
0x3a
,
0x27
,
0x4b
,
0xdd
,
0xd1
,
0xbc
,
0xd7
,
0x01
,
0x8d
,
0x38
,
0x89
,
0xf8
,
0xf5
,
0xe2
,
0x3f
,
0x86
,
0x3b
,
0x39
,
0x96
,
0x74
,
0x02
,
0xbb
,
0x50
,
0xd7
,
0xa1
,
0x49
,
0x6b
,
0x85
,
0xb8
,
0x1a
,
0x2d
,
0xef
,
0x1f
,
0x07
,
0x36
,
0x5f
,
0xcc
,
0xc6
,
0x98
,
0x13
,
0x23
,
0x5a
,
0x12
,
0xd4
,
0x7d
,
0xa8
,
0xca
,
0x0e
,
0xa3
,
0xb1
,
0xb8
,
0xa9
,
0x6c
,
0xab
,
0x36
,
0x34
,
0x10
,
0x7f
,
0x7d
,
0x25
,
0x47
,
0x0f
,
0xa1
,
0x76
,
0x8e
,
0xc3
,
0x84
,
0x30
,
0x09
,
0x44
,
0x8a
,
0x9a
,
0xd6
,
0x94
,
0xed
,
0xc9
,
0xd7
,
0x1a
,
0x68
,
0x1b
,
0xea
,
0xe3
,
0xf8
,
0x52
,
0xf4
,
0x17
,
0x59
,
0x92
,
0x0d
,
0xbf
,
0x36
,
0x8e
,
0x2f
,
0xfd
,
0x24
,
0x42
,
0x1f
,
0xc0
,
0xc6
,
0x38
,
0x60
,
0xf8
,
0x2c
,
0x24
,
0xc3
,
0xd7
,
0x94
,
0xbe
,
0x61
,
0xb2
,
0x2a
,
0x1b
,
0xfe
,
0xba
,
0xde
,
0x3c
,
0x12
,
0x7b
,
0xa8
,
0x2b
,
0x6e
,
0xd2
,
0x28
,
0x26
,
0x98
,
0x13
,
0xb7
,
0x26
,
0xe5
,
0xe9
,
0x5a
,
0x60
,
0xc8
,
0x83
,
0x29
,
0xa1
,
0x09
,
0x97
,
0xa5
,
0xe4
,
0xf8
,
0x66
,
0x89
,
0xde
,
0x87
,
0xf5
,
0x98
,
0x30
,
0xc2
,
0x87
,
0x3a
,
0xca
,
0x86
,
0x3c
,
0xd9
,
0x92
,
0x7b
,
0x2f
,
0x55
,
0x58
,
0x08
,
0x2a
,
0xbf
,
0xe2
,
0x80
,
0xbb
,
0x4d
,
0x29
,
0x92
,
0xdf
,
0xea
,
0x58
,
0xc2
,
0x88
,
0x39
,
0x06
,
0xe6
,
0x58
,
0xc2
,
0x88
,
0x3e
,
0xb6
,
0x09
,
0xd5
,
0x09
,
0x8d
,
0x47
,
0xc4
,
0x6d
,
0x49
,
0x99
,
0x5a
,
0xa0
,
0x1d
,
0x68
,
0x8d
,
0x09
,
0x1b
,
0xc5
,
0xc1
,
0x8c
,
0x0b
,
0x46
,
0xd7
,
0x25
,
0xa6
,
0xf3
,
0x5b
,
0x22
,
0x0f
,
0x96
,
0x9c
,
0x9d
,
0x50
,
0x4e
,
0x98
,
0xbb
,
0xa1
,
0xf2
,
0x30
,
0x6b
,
0x74
,
0x0f
,
0x6e
,
0x8c
,
0x42
,
0x82
,
0xa3
,
0x64
,
0x36
,
0xa4
,
0xd1
,
0x70
,
0x82
,
0x83
,
0xd0
,
0x6d
,
0x4b
,
0x95
,
0x0d
,
0xbd
,
0xfd
,
0x2c
,
0xfa
,
0x1a
,
0x07
,
0xa1
,
0x77
,
0x04
,
0xb7
,
0x33
,
0x54
,
0x5e
,
0xf7
,
0x56
,
0xfc
,
0x55
,
0x86
,
0x2d
,
0x9f
,
0x86
,
0xe1
,
0x19
,
0x1e
,
0xbd
,
0x59
,
0xe1
,
0x5e
,
0xcc
,
0x51
,
0x58
,
0x5e
,
0x4e
,
0xa1
,
0x93
,
0x43
,
0xe1
,
0xdc
,
0x55
,
0xaf
,
0x58
,
0x57
,
0xdd
,
0x22
,
0xb7
,
0x5a
,
0x4c
,
0x6e
,
0xcd
,
0x26
,
0xd7
,
0x30
,
0x57
,
0x9f
,
0x63
,
0x2e
,
0xa5
,
0xa5
,
0xb1
,
0x84
,
0x96
,
0xe6
,
0x22
,
0x2d
,
0x39
,
0xd0
,
0x43
,
0x1e
,
0xf4
,
0xdf
,
0xc0
,
0xf6
,
0x02
,
0x5e
,
0xd7
,
0x05
,
0xff
,
0x77
,
0x07
,
0x6e
,
0x3f
,
0x8d
,
0x18
,
0xc7
,
0x61
,
0x98
,
0xc1
,
0x3e
,
0xad
,
0xbf
,
0xd2
,
0xca
,
0xf5
,
0x57
,
0xfe
,
0x3f
,
0xf5
,
0xe7
,
0x58
,
0xe4
,
0x19
,
0xa6
,
0x2b
,
0x73
,
0x4c
,
0xaf
,
0x54
,
0x93
,
0x56
,
0x27
,
0xac
,
0x65
,
0x3a
,
0x21
,
0x7a
,
0x17
,
0x40
,
0x15
,
0x91
,
0x34
,
0xae
,
0x48
,
0x6a
,
0xca
,
0x9d
,
0x13
,
0xdd
,
0xf8
,
0x0c
,
0xaf
,
0x8d
,
0x7c
,
0x5e
,
0xe7
,
0x2b
,
0xb2
,
0x07
,
0x1d
,
0x13
,
0xcf
,
0x28
,
0x1e
,
0xcb
,
0x98
,
0x34
,
0x41
,
0x6d
,
0xbd
,
0x3f
,
0x88
,
0xc7
,
0x22
,
0xaa
,
0x2c
,
0xd7
,
0xad
,
0xe5
,
0x25
,
0xb8
,
0x6e
,
0x97
,
0xa0
,
0xf7
,
0x14
,
0xb6
,
0xb2
,
0x94
,
0x5c
,
0x97
,
0xde
,
0x3f
,
0x4b
,
0xb0
,
0xfd
,
0x22
,
0x0a
,
0x72
,
0x09
,
0xce
,
0x2b
,
0xae
,
0x05
,
0xc8
,
0xcb
,
0x39
,
0x90
,
0x6f
,
0x42
,
0x75
,
0x96
,
0xc4
,
0xaf
,
0x88
,
0xa6
,
0x50
,
0x2d
,
0xe6
,
0xb1
,
0xac
,
0xd8
,
0x58
,
0x66
,
0xd0
,
0xa8
,
0x2e
,
0xa0
,
0xe1
,
0x0d
,
0xc1
,
0x5d
,
0x8c
,
0xf2
,
0x9a
,
0x39
,
0x8b
,
0xbc
,
0xd2
,
0x37
,
0xb4
,
0xa9
,
0xde
,
0x4b
,
0xef
,
0x16
,
0xdc
,
0x3c
,
0x24
,
0xfc
,
0xa5
,
0x2a
,
0x75
,
0x0d
,
0x80
,
0x77
,
0x00
,
0x68
,
0x7e
,
0xf3
,
0xca
,
0x9f
,
0xde
,
0xb2
,
0xfd
,
0x99
,
0x01
,
0xd3
,
0xe8
,
0x1b
,
0x2d
,
0xef
,
0x0b
,
0x69
,
0xfb
,
0x28
,
0x60
,
0x9c
,
0xc6
,
0x97
,
0xcb
,
0xc0
,
0xed
,
0x80
,
0x33
,
0xc5
,
0x17
,
0xfa
,
0x89
,
0x15
,
0x9f
,
0xde
,
0xa1
,
0x8c
,
0x20
,
0x3d
,
0xaa
,
0x23
,
0x98
,
0x1f
,
0x58
,
0x4a
,
0xab
,
0x0d
,
0x2c
,
0x7f
,
0x94
,
0x00
,
0x3d
,
0x27
,
0xe9
,
0xf0
,
0xf4
,
0x96
,
0xc7
,
0xde
,
0xf0
,
0x54
,
0xb6
,
0x79
,
0x72
,
0xa1
,
0xae
,
0x1b
,
0x8d
,
0x66
,
0xd6
,
0x2c
,
0xc5
,
0x6d
,
0x9d
,
0xe1
,
0x18
,
0x87
,
0x21
,
0x09
,
0xf5
,
0xbb
,
0x99
,
0xae
,
0xc5
,
0x3b
,
0x35
,
0xc5
,
0x17
,
0xc3
,
0x54
,
0x2e
,
0xe8
,
0xdd
,
0xf0
,
0x5b
,
0x53
,
0x7c
,
0xf1
,
0xbd
,
0xde
,
0xf2
,
0x7e
,
0x82
,
0x5b
,
0x56
,
0x70
,
0x3a
,
0x4f
,
0x81
,
0x07
,
0x7b
,
0xa5
,
0x83
,
0x13
,
0x9f
,
0xe8
,
0x73
,
0xa8
,
0xa9
,
0x01
,
0x55
,
0x86
,
0xd6
,
0xde
,
0xbb
,
0x6b
,
0xe7
,
0x2d
,
0x8d
,
0x24
,
0x91
,
0x9e
,
0x68
,
0x7d
,
0xad
,
0xbb
,
0xf7
,
0x6f
,
0x03
,
0xda
,
0x66
,
0xc4
,
0x52
,
0xe3
,
0x33
,
0x0a
,
0x60
,
0x7d
,
0x7e
,
0x96
,
0x44
,
0x0f
,
0x8a
,
0xa7
,
0xeb
,
0xcc
,
0x3f
,
0x11
,
0xba
,
0x0f
,
0x57
,
0x51
,
0x55
,
0x19
,
0x78
,
0x6b
,
0x9f
,
0x94
,
0x10
,
0x83
,
0x4e
,
0x76
,
0xc4
,
0x43
,
0x8f
,
0xf2
,
0x6d
,
0x14
,
0xcc
,
0x94
,
0xdd
,
0xfe
,
0xaa
,
0xea
,
0xc6
,
0x2d
,
0x3a
,
0x97
,
0x77
,
0xce
,
0x9e
,
0xcb
,
0xd0
,
0x5b
,
0xcd
,
0xd8
,
0xa3
,
0x60
,
0x77
,
0x77
,
0x65
,
0xfd
,
0xd4
,
0xef
,
0xcf
,
0xb0
,
0x61
,
0xbd
,
0xfa
,
0xa8
,
0x00
,
0xad
,
0xbc
,
0x29
,
0xaf
,
0xfb
,
0xd1
,
0x4a
,
0xba
,
0xa9
,
0xaf
,
0x29
,
0xb4
,
0xed
,
0x36
,
0x88
,
0x0a
,
0x0c
,
0xe4
,
0xbe
,
0x5f
,
0xdd
,
0x8f
,
0x57
,
0x53
,
0x4e
,
0xdd
,
0x31
,
0xe8
,
0x64
,
0x7b
,
0x50
,
0x11
,
0x8f
,
0x05
,
0x1d
,
0xb5
,
0x88
,
0xc7
,
0xa2
,
0xd6
,
0xe6
,
0xad
,
0x21
,
0x0c
,
0x70
,
0xd5
,
0x82
,
0xd0
,
0xfd
,
0x42
,
0x42
,
0xec
,
0xce
,
0xd5
,
0xed
,
0xbd
,
0x5d
,
0x31
,
0x75
,
0x31
,
0x83
,
0x1b
,
0x99
,
0x69
,
0x01
,
0x15
,
0x40
,
0x93
,
0x3f
,
0x84
,
0x75
,
0x1f
,
0xad
,
0xa8
,
0x9d
,
0x49
,
0x4a
,
0x77
,
0xb5
,
0x25
,
0x49
,
0xd9
,
0x2d
,
0x73
,
0x49
,
0x52
,
0x99
,
0x06
,
0xe9
,
0xad
,
0xa1
,
0x00
,
0xda
,
0x7e
,
0x12
,
0x69
,
0xd7
,
0xa2
,
0x2d
,
0xa0
,
0x82
,
0xd3
,
0x8b
,
0x4d
,
0xb1
,
0xfb
,
0x60
,
0x05
,
0xcd
,
0xab
,
0xfa
,
0x7e
,
0x0c
,
0x3f
,
0x36
,
0x8c
,
0xea
,
0x59
,
0x4d
,
0xfe
,
0xef
,
0xc2
,
0x67
,
0xff
,
0x05
,
0x00
,
0x00
,
0xff
,
0xff
,
0xba
,
0xd8
,
0xb0
,
0xb9
,
0x4b
,
0x11
,
0x00
,
0x00
,
}
pkg/tiller/release_testing.go
View file @
ed8f17a8
...
...
@@ -38,13 +38,18 @@ func (s *ReleaseServer) RunReleaseTest(req *services.TestReleaseRequest, stream
return
err
}
parallelism
:=
uint32
(
maxParallelism
)
if
req
.
MaxParallel
!=
0
{
parallelism
=
req
.
MaxParallel
}
testEnv
:=
&
reltesting
.
Environment
{
Namespace
:
rel
.
Namespace
,
KubeClient
:
s
.
env
.
KubeClient
,
Timeout
:
req
.
Timeout
,
Stream
:
stream
,
Parallel
:
req
.
Parallel
,
Parallelism
:
maxP
arallelism
,
Parallelism
:
p
arallelism
,
}
s
.
Log
(
"running tests for release %s"
,
rel
.
Name
)
tSuite
,
err
:=
reltesting
.
NewTestSuite
(
rel
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment