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
825d2abd
Commit
825d2abd
authored
Sep 12, 2016
by
fibonacci1729
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(helm): better description for optional version flag
parent
e42aa6c0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
get.go
cmd/helm/get.go
+1
-1
status.go
cmd/helm/status.go
+1
-1
No files found.
cmd/helm/get.go
View file @
825d2abd
...
...
@@ -73,7 +73,7 @@ func newGetCmd(client helm.Interface, out io.Writer) *cobra.Command {
},
}
cmd
.
PersistentFlags
()
.
Int32Var
(
&
get
.
version
,
"version"
,
0
,
"
version of release
"
)
cmd
.
PersistentFlags
()
.
Int32Var
(
&
get
.
version
,
"version"
,
0
,
"
get the named release with version
"
)
cmd
.
AddCommand
(
newGetValuesCmd
(
nil
,
out
))
cmd
.
AddCommand
(
newGetManifestCmd
(
nil
,
out
))
...
...
cmd/helm/status.go
View file @
825d2abd
...
...
@@ -60,7 +60,7 @@ func newStatusCmd(client helm.Interface, out io.Writer) *cobra.Command {
},
}
cmd
.
PersistentFlags
()
.
Int32Var
(
&
status
.
version
,
"version"
,
0
,
"
version of release
"
)
cmd
.
PersistentFlags
()
.
Int32Var
(
&
status
.
version
,
"version"
,
0
,
"
If set, display the status of the named release with version
"
)
return
cmd
}
...
...
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