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
245b5e08
Commit
245b5e08
authored
Jun 20, 2016
by
fibonacci1729
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(issue/841): capitalization and punctuation consistency.
parent
becaf4ce
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
17 additions
and
17 deletions
+17
-17
create.go
cmd/helm/create.go
+1
-1
delete.go
cmd/helm/delete.go
+1
-1
fetch.go
cmd/helm/fetch.go
+1
-1
get.go
cmd/helm/get.go
+3
-3
home.go
cmd/helm/home.go
+1
-1
init.go
cmd/helm/init.go
+1
-1
install.go
cmd/helm/install.go
+1
-1
lint.go
cmd/helm/lint.go
+1
-1
list.go
cmd/helm/list.go
+1
-1
package.go
cmd/helm/package.go
+1
-1
search.go
cmd/helm/search.go
+1
-1
serve.go
cmd/helm/serve.go
+1
-1
status.go
cmd/helm/status.go
+1
-1
update.go
cmd/helm/update.go
+1
-1
version.go
cmd/helm/version.go
+1
-1
No files found.
cmd/helm/create.go
View file @
245b5e08
...
...
@@ -40,7 +40,7 @@ func init() {
var
createCmd
=
&
cobra
.
Command
{
Use
:
"create NAME"
,
Short
:
"
Create a new chart with the given name.
"
,
Short
:
"
create a new chart with the given name
"
,
Long
:
createDesc
,
RunE
:
runCreate
,
}
...
...
cmd/helm/delete.go
View file @
245b5e08
...
...
@@ -22,7 +22,7 @@ var deleteCommand = &cobra.Command{
Use
:
"delete [flags] RELEASE_NAME"
,
Aliases
:
[]
string
{
"del"
},
SuggestFor
:
[]
string
{
"remove"
,
"rm"
},
Short
:
"
G
iven a release name, delete the release from Kubernetes"
,
Short
:
"
g
iven a release name, delete the release from Kubernetes"
,
Long
:
deleteDesc
,
RunE
:
delRelease
,
PersistentPreRunE
:
setupConnection
,
...
...
cmd/helm/fetch.go
View file @
245b5e08
...
...
@@ -25,7 +25,7 @@ func init() {
var
fetchCmd
=
&
cobra
.
Command
{
Use
:
"fetch [chart URL | repo/chartname]"
,
Short
:
"
Download a chart from a repository and (optionally) unpack it in local directory.
"
,
Short
:
"
download a chart from a repository and (optionally) unpack it in local directory
"
,
Long
:
""
,
RunE
:
fetch
,
}
...
...
cmd/helm/get.go
View file @
245b5e08
...
...
@@ -51,7 +51,7 @@ var errReleaseRequired = errors.New("release name is required")
var
getCommand
=
&
cobra
.
Command
{
Use
:
"get [flags] RELEASE_NAME"
,
Short
:
"
D
ownload a named release"
,
Short
:
"
d
ownload a named release"
,
Long
:
getHelp
,
RunE
:
getCmd
,
PersistentPreRunE
:
setupConnection
,
...
...
@@ -59,14 +59,14 @@ var getCommand = &cobra.Command{
var
getValuesCommand
=
&
cobra
.
Command
{
Use
:
"values [flags] RELEASE_NAME"
,
Short
:
"
D
ownload the values file for a named release"
,
Short
:
"
d
ownload the values file for a named release"
,
Long
:
getValuesHelp
,
RunE
:
getValues
,
}
var
getManifestCommand
=
&
cobra
.
Command
{
Use
:
"manifest [flags] RELEASE_NAME"
,
Short
:
"
D
ownload the manifest for a named release"
,
Short
:
"
d
ownload the manifest for a named release"
,
Long
:
getManifestHelp
,
RunE
:
getManifest
,
}
...
...
cmd/helm/home.go
View file @
245b5e08
...
...
@@ -11,7 +11,7 @@ any helm configuration files live.
var
homeCommand
=
&
cobra
.
Command
{
Use
:
"home"
,
Short
:
"
D
isplays the location of HELM_HOME"
,
Short
:
"
d
isplays the location of HELM_HOME"
,
Long
:
longHomeHelp
,
Run
:
home
,
}
...
...
cmd/helm/init.go
View file @
245b5e08
...
...
@@ -35,7 +35,7 @@ func init() {
var
initCmd
=
&
cobra
.
Command
{
Use
:
"init"
,
Short
:
"
Initialize Helm on both client and server.
"
,
Short
:
"
initialize Helm on both client and server
"
,
Long
:
initDesc
,
RunE
:
runInit
,
}
...
...
cmd/helm/install.go
View file @
245b5e08
...
...
@@ -34,7 +34,7 @@ var (
var
installCmd
=
&
cobra
.
Command
{
Use
:
"install [CHART]"
,
Short
:
"install a chart archive
.
"
,
Short
:
"install a chart archive"
,
Long
:
installDesc
,
RunE
:
runInstall
,
PersistentPreRunE
:
setupConnection
,
...
...
cmd/helm/lint.go
View file @
245b5e08
...
...
@@ -22,7 +22,7 @@ or recommendation, it will emit [WARNING] messages.
var
lintCommand
=
&
cobra
.
Command
{
Use
:
"lint [flags] PATH"
,
Short
:
"
E
xamines a chart for possible issues"
,
Short
:
"
e
xamines a chart for possible issues"
,
Long
:
longLintHelp
,
RunE
:
lintCmd
,
}
...
...
cmd/helm/list.go
View file @
245b5e08
...
...
@@ -38,7 +38,7 @@ flag with the '--offset' flag allows you to page through results.
var
listCommand
=
&
cobra
.
Command
{
Use
:
"list [flags] [FILTER]"
,
Short
:
"
L
ist releases"
,
Short
:
"
l
ist releases"
,
Long
:
listHelp
,
RunE
:
listCmd
,
Aliases
:
[]
string
{
"ls"
},
...
...
cmd/helm/package.go
View file @
245b5e08
...
...
@@ -30,7 +30,7 @@ func init() {
var
packageCmd
=
&
cobra
.
Command
{
Use
:
"package [CHART_PATH]"
,
Short
:
"
Package a chart directory into a chart archive.
"
,
Short
:
"
package a chart directory into a chart archive
"
,
Long
:
packageDesc
,
RunE
:
runPackage
,
}
...
...
cmd/helm/search.go
View file @
245b5e08
...
...
@@ -18,7 +18,7 @@ func init() {
var
searchCmd
=
&
cobra
.
Command
{
Use
:
"search [keyword]"
,
Short
:
"
S
earch for a keyword in charts"
,
Short
:
"
s
earch for a keyword in charts"
,
Long
:
"Searches the known repositories cache files for the specified search string, looks at name and keywords"
,
RunE
:
search
,
PreRunE
:
requireInit
,
...
...
cmd/helm/serve.go
View file @
245b5e08
...
...
@@ -17,7 +17,7 @@ func init() {
var
serveCmd
=
&
cobra
.
Command
{
Use
:
"serve"
,
Short
:
"
S
tart a local http web server"
,
Short
:
"
s
tart a local http web server"
,
Long
:
serveDesc
,
Run
:
serve
,
}
...
...
cmd/helm/status.go
View file @
245b5e08
...
...
@@ -15,7 +15,7 @@ This command shows the status of a named release.
var
statusCommand
=
&
cobra
.
Command
{
Use
:
"status [flags] RELEASE_NAME"
,
Short
:
"
D
isplays the status of the named release"
,
Short
:
"
d
isplays the status of the named release"
,
Long
:
statusHelp
,
RunE
:
status
,
PersistentPreRunE
:
setupConnection
,
...
...
cmd/helm/update.go
View file @
245b5e08
...
...
@@ -15,7 +15,7 @@ var verboseUpdate bool
var
updateCommand
=
&
cobra
.
Command
{
Use
:
"update"
,
Aliases
:
[]
string
{
"up"
},
Short
:
"
Update information on available charts in the chart repositories.
"
,
Short
:
"
update information on available charts in the chart repositories
"
,
RunE
:
runUpdate
,
}
...
...
cmd/helm/version.go
View file @
245b5e08
...
...
@@ -14,7 +14,7 @@ func init() {
var
versionCmd
=
&
cobra
.
Command
{
Use
:
"version"
,
Short
:
"
Print the client version information.
"
,
Short
:
"
print the client version information
"
,
Run
:
func
(
cmd
*
cobra
.
Command
,
args
[]
string
)
{
fmt
.
Println
(
version
.
Version
)
},
...
...
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