Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
1105 Внедрение механизмов обеспечения безопасности цепочки поставки программных проектов
Legacy
scanned-projects
helm
Commits
8cd12071
Commit
8cd12071
authored
8 years ago
by
Matt Butcher
Committed by
GitHub
8 years ago
Browse files
Options
Download
Plain Diff
Merge pull request #1136 from technosophos/fix/1130-debug-output
fix(helm): removed debug output
parents
c7182a5a
1b3418d9
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
cmd/helm/install.go
+7
-3
cmd/helm/install.go
with
7 additions
and
3 deletions
+7
-3
cmd/helm/install.go
+
7
−
3
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
.
P
rintf
(
"Chart path: %s
\n
"
,
i
.
chartPath
)
fmt
.
Fp
rintf
(
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
}
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets