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
fd98a03f
Commit
fd98a03f
authored
Jul 10, 2017
by
Steven E. Harris
Committed by
GitHub
Jul 10, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2654 from mstrzele/helm-list-a
feat(helm): add -a flag to 'helm list'
parents
97818b1f
46275612
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
list.go
cmd/helm/list.go
+1
-1
No files found.
cmd/helm/list.go
View file @
fd98a03f
...
...
@@ -104,7 +104,7 @@ func newListCmd(client helm.Interface, out io.Writer) *cobra.Command {
f
.
BoolVarP
(
&
list
.
sortDesc
,
"reverse"
,
"r"
,
false
,
"reverse the sort order"
)
f
.
IntVarP
(
&
list
.
limit
,
"max"
,
"m"
,
256
,
"maximum number of releases to fetch"
)
f
.
StringVarP
(
&
list
.
offset
,
"offset"
,
"o"
,
""
,
"next release name in the list, used to offset from start value"
)
f
.
BoolVar
(
&
list
.
all
,
"all
"
,
false
,
"show all releases, not just the ones marked DEPLOYED"
)
f
.
BoolVar
P
(
&
list
.
all
,
"all"
,
"a
"
,
false
,
"show all releases, not just the ones marked DEPLOYED"
)
f
.
BoolVar
(
&
list
.
deleted
,
"deleted"
,
false
,
"show deleted releases"
)
f
.
BoolVar
(
&
list
.
deleting
,
"deleting"
,
false
,
"show releases that are currently being deleted"
)
f
.
BoolVar
(
&
list
.
deployed
,
"deployed"
,
false
,
"show deployed releases. If no other is specified, this will be automatically enabled"
)
...
...
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