Revert "add kubeconfig types"

This commit is contained in:
Brendan Burns
2015-01-07 12:39:37 -08:00
parent 39d1c1aa30
commit 02dbad7094
34 changed files with 719 additions and 2606 deletions

View File

@@ -21,8 +21,6 @@ import (
"strconv"
"github.com/spf13/cobra"
"github.com/GoogleCloudPlatform/kubernetes/pkg/client"
)
func (f *Factory) NewCmdLog(out io.Writer) *cobra.Command {
@@ -46,9 +44,7 @@ Examples:
}
namespace := GetKubeNamespace(cmd)
config, err := f.ClientConfig.ClientConfig()
checkErr(err)
client, err := client.New(config)
client, err := f.ClientBuilder.Client()
checkErr(err)
podID := args[0]