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
b1e0c8fc
Commit
b1e0c8fc
authored
May 24, 2016
by
Adam Reese
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #759 from adamreese/feat/tunnel2
feat(tunnel): wire in the tunnel setup and teardown
parents
d16e7881
f0a15743
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
34 additions
and
6 deletions
+34
-6
delete.go
cmd/helm/delete.go
+1
-0
get.go
cmd/helm/get.go
+1
-0
helm.go
cmd/helm/helm.go
+22
-5
install.go
cmd/helm/install.go
+1
-0
list.go
cmd/helm/list.go
+1
-0
status.go
cmd/helm/status.go
+1
-0
tunnel.go
cmd/helm/tunnel.go
+7
-1
No files found.
cmd/helm/delete.go
View file @
b1e0c8fc
...
@@ -24,6 +24,7 @@ var deleteCommand = &cobra.Command{
...
@@ -24,6 +24,7 @@ var deleteCommand = &cobra.Command{
Short
:
"Given a release name, delete the release from Kubernetes"
,
Short
:
"Given a release name, delete the release from Kubernetes"
,
Long
:
deleteDesc
,
Long
:
deleteDesc
,
RunE
:
delRelease
,
RunE
:
delRelease
,
PersistentPreRunE
:
setupConnection
,
}
}
func
init
()
{
func
init
()
{
...
...
cmd/helm/get.go
View file @
b1e0c8fc
...
@@ -50,6 +50,7 @@ var getCommand = &cobra.Command{
...
@@ -50,6 +50,7 @@ var getCommand = &cobra.Command{
Short
:
"Download a named release"
,
Short
:
"Download a named release"
,
Long
:
getHelp
,
Long
:
getHelp
,
RunE
:
getCmd
,
RunE
:
getCmd
,
PersistentPreRunE
:
setupConnection
,
}
}
var
getValuesCommand
=
&
cobra
.
Command
{
var
getValuesCommand
=
&
cobra
.
Command
{
...
...
cmd/helm/helm.go
View file @
b1e0c8fc
...
@@ -50,7 +50,7 @@ var RootCommand = &cobra.Command{
...
@@ -50,7 +50,7 @@ var RootCommand = &cobra.Command{
Use
:
"helm"
,
Use
:
"helm"
,
Short
:
"The Helm package manager for Kubernetes."
,
Short
:
"The Helm package manager for Kubernetes."
,
Long
:
globalUsage
,
Long
:
globalUsage
,
PersistentP
reRun
:
bootstrap
,
PersistentP
ostRun
:
teardown
,
}
}
func
init
()
{
func
init
()
{
...
@@ -59,9 +59,6 @@ func init() {
...
@@ -59,9 +59,6 @@ func init() {
home
=
"$HOME/.helm"
home
=
"$HOME/.helm"
}
}
thost
:=
os
.
Getenv
(
hostEnvVar
)
thost
:=
os
.
Getenv
(
hostEnvVar
)
if
thost
==
""
{
thost
=
defaultHost
}
p
:=
RootCommand
.
PersistentFlags
()
p
:=
RootCommand
.
PersistentFlags
()
p
.
StringVar
(
&
helmHome
,
"home"
,
home
,
"location of your Helm config. Overrides $HELM_HOME."
)
p
.
StringVar
(
&
helmHome
,
"home"
,
home
,
"location of your Helm config. Overrides $HELM_HOME."
)
p
.
StringVar
(
&
tillerHost
,
"host"
,
thost
,
"address of tiller. Overrides $HELM_HOST."
)
p
.
StringVar
(
&
tillerHost
,
"host"
,
thost
,
"address of tiller. Overrides $HELM_HOST."
)
...
@@ -74,12 +71,32 @@ func main() {
...
@@ -74,12 +71,32 @@ func main() {
}
}
}
}
func
bootstrap
(
c
*
cobra
.
Command
,
args
[]
string
)
{
func
setupConnection
(
c
*
cobra
.
Command
,
args
[]
string
)
error
{
if
tillerHost
==
""
{
// Should failure fall back to default host?
tunnel
,
err
:=
newTillerPortForwarder
()
if
err
!=
nil
{
return
err
}
tillerHost
=
fmt
.
Sprintf
(
":%d"
,
tunnel
.
Local
)
if
flagVerbose
{
fmt
.
Printf
(
"Created tunnel using local port: '%d'
\n
"
,
tunnel
.
Local
)
}
}
// Set up the gRPC config.
// Set up the gRPC config.
helm
.
Config
.
ServAddr
=
tillerHost
helm
.
Config
.
ServAddr
=
tillerHost
if
flagVerbose
{
if
flagVerbose
{
fmt
.
Printf
(
"Server: %q
\n
"
,
helm
.
Config
.
ServAddr
)
fmt
.
Printf
(
"Server: %q
\n
"
,
helm
.
Config
.
ServAddr
)
}
}
return
nil
}
func
teardown
(
c
*
cobra
.
Command
,
args
[]
string
)
{
if
tunnel
!=
nil
{
tunnel
.
Close
()
}
}
}
func
checkArgsLength
(
expectedNum
,
actualNum
int
,
requiredArgs
...
string
)
error
{
func
checkArgsLength
(
expectedNum
,
actualNum
int
,
requiredArgs
...
string
)
error
{
...
...
cmd/helm/install.go
View file @
b1e0c8fc
...
@@ -39,6 +39,7 @@ var installCmd = &cobra.Command{
...
@@ -39,6 +39,7 @@ var installCmd = &cobra.Command{
Short
:
"install a chart archive."
,
Short
:
"install a chart archive."
,
Long
:
installDesc
,
Long
:
installDesc
,
RunE
:
runInstall
,
RunE
:
runInstall
,
PersistentPreRunE
:
setupConnection
,
}
}
func
init
()
{
func
init
()
{
...
...
cmd/helm/list.go
View file @
b1e0c8fc
...
@@ -42,6 +42,7 @@ var listCommand = &cobra.Command{
...
@@ -42,6 +42,7 @@ var listCommand = &cobra.Command{
Long
:
listHelp
,
Long
:
listHelp
,
RunE
:
listCmd
,
RunE
:
listCmd
,
Aliases
:
[]
string
{
"ls"
},
Aliases
:
[]
string
{
"ls"
},
PersistentPreRunE
:
setupConnection
,
}
}
var
(
var
(
...
...
cmd/helm/status.go
View file @
b1e0c8fc
...
@@ -17,6 +17,7 @@ var statusCommand = &cobra.Command{
...
@@ -17,6 +17,7 @@ var statusCommand = &cobra.Command{
Short
:
"Displays the status of the named release"
,
Short
:
"Displays the status of the named release"
,
Long
:
statusHelp
,
Long
:
statusHelp
,
RunE
:
status
,
RunE
:
status
,
PersistentPreRunE
:
setupConnection
,
}
}
func
init
()
{
func
init
()
{
...
...
cmd/helm/tunnel.go
View file @
b1e0c8fc
...
@@ -9,12 +9,17 @@ import (
...
@@ -9,12 +9,17 @@ import (
"github.com/kubernetes/helm/pkg/kube"
"github.com/kubernetes/helm/pkg/kube"
)
)
// TODO refactor out this global var
var
tunnel
*
kube
.
Tunnel
func
newTillerPortForwarder
()
(
*
kube
.
Tunnel
,
error
)
{
func
newTillerPortForwarder
()
(
*
kube
.
Tunnel
,
error
)
{
podName
,
err
:=
getTillerPodName
(
"helm"
)
podName
,
err
:=
getTillerPodName
(
"helm"
)
if
err
!=
nil
{
if
err
!=
nil
{
return
nil
,
err
return
nil
,
err
}
}
return
kube
.
New
(
nil
)
.
ForwardPort
(
"helm"
,
podName
,
44134
)
// FIXME use a constain that is accessable on init
const
tillerPort
=
44134
return
kube
.
New
(
nil
)
.
ForwardPort
(
"helm"
,
podName
,
tillerPort
)
}
}
func
getTillerPodName
(
namespace
string
)
(
string
,
error
)
{
func
getTillerPodName
(
namespace
string
)
(
string
,
error
)
{
...
@@ -23,6 +28,7 @@ func getTillerPodName(namespace string) (string, error) {
...
@@ -23,6 +28,7 @@ func getTillerPodName(namespace string) (string, error) {
return
""
,
err
return
""
,
err
}
}
// TODO use a const for labels
selector
:=
labels
.
Set
{
"app"
:
"helm"
,
"name"
:
"tiller"
}
.
AsSelector
()
selector
:=
labels
.
Set
{
"app"
:
"helm"
,
"name"
:
"tiller"
}
.
AsSelector
()
options
:=
api
.
ListOptions
{
LabelSelector
:
selector
}
options
:=
api
.
ListOptions
{
LabelSelector
:
selector
}
pods
,
err
:=
client
.
Pods
(
namespace
)
.
List
(
options
)
pods
,
err
:=
client
.
Pods
(
namespace
)
.
List
(
options
)
...
...
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