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
8cd12071
Commit
8cd12071
authored
Sep 06, 2016
by
Matt Butcher
Committed by
GitHub
Sep 06, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1136 from technosophos/fix/1130-debug-output
fix(helm): removed debug output
parents
c7182a5a
1b3418d9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
install.go
cmd/helm/install.go
+7
-3
No files found.
cmd/helm/install.go
View file @
8cd12071
...
...
@@ -119,7 +119,7 @@ func newInstallCmd(c helm.Interface, out io.Writer) *cobra.Command {
func
(
i
*
installCmd
)
run
()
error
{
if
flagDebug
{
fmt
.
Printf
(
"Chart path: %s
\n
"
,
i
.
chartPath
)
fmt
.
Fprintf
(
i
.
out
,
"Chart path: %s
\n
"
,
i
.
chartPath
)
}
rawVals
,
err
:=
i
.
vals
()
...
...
@@ -134,7 +134,7 @@ func (i *installCmd) run() error {
return
err
}
// Print the final name so the user knows what the final name of the release is.
fmt
.
Printf
(
"
f
inal name: %s
\n
"
,
i
.
name
)
fmt
.
Printf
(
"
F
inal name: %s
\n
"
,
i
.
name
)
}
res
,
err
:=
i
.
client
.
InstallRelease
(
...
...
@@ -155,6 +155,11 @@ func (i *installCmd) run() error {
}
i
.
printRelease
(
rel
)
// If this is a dry run, we can't display status.
if
i
.
dryRun
{
return
nil
}
// Print the status like status command does
status
,
err
:=
i
.
client
.
ReleaseStatus
(
rel
.
Name
)
if
err
!=
nil
{
...
...
@@ -250,7 +255,6 @@ func (v *values) Set(data string) error {
}
}
}
fmt
.
Print
(
v
.
pairs
)
return
nil
}
...
...
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