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
44fbfc42
Unverified
Commit
44fbfc42
authored
Feb 14, 2017
by
Matt Butcher
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(style): add missing comments
parent
5d909d8c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
0 deletions
+3
-0
option.go
pkg/helm/option.go
+1
-0
portforwarder.go
pkg/helm/portforwarder/portforwarder.go
+1
-0
hooks.go
pkg/hooks/hooks.go
+1
-0
No files found.
pkg/helm/option.go
View file @
44fbfc42
...
...
@@ -316,6 +316,7 @@ func UpgradeDryRun(dry bool) UpdateOption {
}
}
// ResetValues will (if true) trigger resetting the values to their original state.
func
ResetValues
(
reset
bool
)
UpdateOption
{
return
func
(
opts
*
options
)
{
opts
.
resetValues
=
reset
...
...
pkg/helm/portforwarder/portforwarder.go
View file @
44fbfc42
...
...
@@ -28,6 +28,7 @@ import (
"k8s.io/helm/pkg/kube"
)
// New creates a new and initialized tunnel.
func
New
(
namespace
string
,
client
*
internalclientset
.
Clientset
,
config
*
restclient
.
Config
)
(
*
kube
.
Tunnel
,
error
)
{
podName
,
err
:=
getTillerPodName
(
client
.
Core
(),
namespace
)
if
err
!=
nil
{
...
...
pkg/hooks/hooks.go
View file @
44fbfc42
...
...
@@ -39,6 +39,7 @@ const (
ReleaseTestFailure
=
"test-failure"
)
// FilterTestHooks filters the list of hooks are returns only testing hooks.
func
FilterTestHooks
(
hooks
[]
*
release
.
Hook
)
([]
*
release
.
Hook
,
error
)
{
testHooks
:=
[]
*
release
.
Hook
{}
notFoundErr
:=
errors
.
New
(
"no tests found"
)
...
...
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