Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
cjimti committed Aug 5, 2018
0 parents commit 4d641d9
Show file tree
Hide file tree
Showing 7 changed files with 823 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.idea
7 changes: 7 additions & 0 deletions NOTICE
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
This software is not an official Kubernetes project or endorsed by
The Kubernetes Authors or The Linux Foundation.

This software contains code derived from The Kubernetes Authors.
MD5 Message-Digest Algorithm, including various
modifications by Spyglass Inc., Carnegie Mellon University, and
Bell Communications Research, Inc (Bellcore).
45 changes: 45 additions & 0 deletions cmd/kubefwd/kubefwd.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
/*
Copyright 2018 Craig Johnston <[email protected]>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package main

import (
"os"

"github.com/spf13/cobra"
"github.com/txn2/kubefwd/cmd/kubefwd/services"
"github.com/txn2/kubefwd/cmd/kubefwd/version"
)

var globalUsage = ``

func newRootCmd() *cobra.Command {
cmd := &cobra.Command{
Use: "kubefwd",
Short: "Expose Kubernetes services for local development.",
Long: globalUsage,
}

cmd.AddCommand(version.Cmd, services.Cmd)
return cmd
}

func main() {
cmd := newRootCmd()

if err := cmd.Execute(); err != nil {
os.Exit(1)
}
}
165 changes: 165 additions & 0 deletions cmd/kubefwd/services/services.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,165 @@
/*
Copyright 2018 Craig Johnston <[email protected]>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package services

import (
"fmt"
"os"
"path/filepath"
"strconv"
"sync"

"github.com/cbednarski/hostess"
"github.com/spf13/cobra"
"github.com/txn2/kubefwd/pkg/utils"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/client-go/kubernetes"
)

var Cmd = &cobra.Command{
Use: "services",
Aliases: []string{"svcs", "svc"},
Short: "Forward all services",
Long: `Forward all Kubernetes services.`,
Run: func(cmd *cobra.Command, args []string) {

// k8s rest config
config := utils.K8sConfig(cmd)
namespace := cmd.Flag("namespace").Value.String()
selector := cmd.Flag("selector").Value.String()

listOptions := metav1.ListOptions{}
if selector != "" {
listOptions.LabelSelector = selector
}

// create the client set
clientSet, err := kubernetes.NewForConfig(config)
if err != nil {
panic(err.Error())
}

services, err := clientSet.CoreV1().Services(namespace).List(listOptions)

var wg sync.WaitGroup

publisher := &utils.Publisher{
PublisherName: "Services",
Output: false,
}

d := 1

//hosts := hostess.NewHostlist()
hostfile, errs := hostess.LoadHostfile()
if errs != nil {
fmt.Println("Can not load /etc/hosts")
os.Exit(1)
}

for _, svc := range services.Items {
selector := mapToSelectorStr(svc.Spec.Selector)
pods, err := clientSet.CoreV1().Pods(namespace).List(metav1.ListOptions{LabelSelector: selector})
if err != nil {
fmt.Printf("no pods found for %s: %s\n", selector, err.Error())
continue
}

if len(pods.Items) < 1 {
fmt.Printf("No pods returned for service.\n")
continue
}

podName := ""
podPort := ""

localIp, ii, err := utils.ReadyInterface(127, 1, 27, d, podPort)
d = ii

for _, port := range svc.Spec.Ports {

podName = pods.Items[0].Name
podPort = port.TargetPort.String()
localPort := strconv.Itoa(int(port.Port))

_, err = clientSet.CoreV1().Pods(namespace).Get(podName, metav1.GetOptions{})
if err != nil {
fmt.Printf("Error getting pod: %s\n", err.Error())
break // no need to check other ports if we can't ge the pod
}

if err != nil {
fmt.Println(err.Error())
os.Exit(1)
}

fmt.Printf("Forwarding local %s:%s as %s:%d to pod %s:%s\n", localIp.String(), localPort, svc.Name, port.Port, podName, podPort)

wg.Add(1)
pfo := &utils.PortForwardOpts{
Out: publisher,
Config: config,
ClientSet: clientSet,
Namespace: namespace,
Service: svc.Name,
PodName: podName,
PodPort: podPort,
LocalIp: localIp,
LocalPort: localPort,
Hostfile: hostfile,
}

go utils.PortForward(&wg, pfo)

}
}

wg.Wait()
fmt.Printf("\nDone...\n")
hostfile.Save()
},
}

func init() {
cfgFilePath := ""

if home := homeDir(); home != "" {
cfgFilePath = filepath.Join(home, ".kube", "config")
}

Cmd.Flags().StringP("kubeconfig", "c", cfgFilePath, "absolute path to the kubeconfig file")
Cmd.Flags().StringP("namespace", "n", "", "Specify a namespace.")
Cmd.Flags().StringP("selector", "l", "", "Selector (label query) to filter on, supports '=', '==', and '!='.(e.g. -l key1=value1,key2=value2)")
}

func homeDir() string {
if h := os.Getenv("HOME"); h != "" {
return h
}
return os.Getenv("USERPROFILE") // windows
}

func mapToSelectorStr(msel map[string]string) string {
selector := ""
for k, v := range msel {
if selector != "" {
selector = selector + ","
}
selector = selector + fmt.Sprintf("%s=%s", k, v)
}

return selector
}
16 changes: 16 additions & 0 deletions cmd/kubefwd/version/version.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
package version

import (
"fmt"

"github.com/spf13/cobra"
)

var Cmd = &cobra.Command{
Use: "version",
Short: "Print the version of Kubefwd",
Long: ``,
Run: func(cmd *cobra.Command, args []string) {
fmt.Println("Kubefwd version: 1.0.0")
},
}
Loading

0 comments on commit 4d641d9

Please sign in to comment.