Commit b1e0c8fc authored by Adam Reese's avatar Adam Reese

Merge pull request #759 from adamreese/feat/tunnel2

feat(tunnel): wire in the tunnel setup and teardown
parents d16e7881 f0a15743
...@@ -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() {
......
...@@ -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{
......
...@@ -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,
PersistentPreRun: bootstrap, PersistentPostRun: 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 {
......
...@@ -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() {
......
...@@ -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 (
......
...@@ -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() {
......
...@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment