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
40cbc900
Commit
40cbc900
authored
Apr 14, 2016
by
Michelle Noorali
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ref(init): add desc, rm cmd/tiller/Dockerfile
parent
306aca6a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
9 deletions
+6
-9
init.go
cmd/helm/init.go
+6
-1
.dockerignore
cmd/tiller/.dockerignore
+0
-3
Dockerfile
cmd/tiller/Dockerfile
+0
-5
No files found.
cmd/helm/init.go
View file @
40cbc900
...
@@ -9,6 +9,11 @@ import (
...
@@ -9,6 +9,11 @@ import (
"github.com/spf13/cobra"
"github.com/spf13/cobra"
)
)
const
longDesc
=
`
This command installs Tiller (the helm server side component) onto your
Kubernetes Cluster and sets up local configuration in $HELM_HOME (default: ~/.helm/)
`
var
tillerImg
string
var
tillerImg
string
func
init
()
{
func
init
()
{
...
@@ -19,7 +24,7 @@ func init() {
...
@@ -19,7 +24,7 @@ func init() {
var
initCmd
=
&
cobra
.
Command
{
var
initCmd
=
&
cobra
.
Command
{
Use
:
"init"
,
Use
:
"init"
,
Short
:
"Initialize Helm on both client and server."
,
Short
:
"Initialize Helm on both client and server."
,
Long
:
`Add long help here`
,
Long
:
longDesc
,
RunE
:
RunInit
,
RunE
:
RunInit
,
}
}
...
...
cmd/tiller/.dockerignore
deleted
100644 → 0
View file @
306aca6a
.dockerignore
Dockerfile
Makefile
cmd/tiller/Dockerfile
deleted
100644 → 0
View file @
306aca6a
FROM
ubuntu:14.04
ADD
. /
CMD
["/tiller"]
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