Skip to content

Commit 5042f9e

Browse files
committed
f
1 parent fbd4c32 commit 5042f9e

File tree

3 files changed

+5
-138
lines changed

3 files changed

+5
-138
lines changed

pkg/oc/cli/util/clientcmd/factory_client_access.go

+2-49
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,11 @@ import (
44
"errors"
55
"fmt"
66
"io/ioutil"
7-
"net/http"
87
"os"
98
"path/filepath"
109
"regexp"
1110
"strconv"
1211
"strings"
13-
"time"
1412

1513
"github.com/golang/glog"
1614
"github.com/spf13/cobra"
@@ -27,13 +25,11 @@ import (
2725
restclient "k8s.io/client-go/rest"
2826
kclientcmd "k8s.io/client-go/tools/clientcmd"
2927
kclientcmdapi "k8s.io/client-go/tools/clientcmd/api"
30-
"k8s.io/client-go/util/homedir"
3128
kapi "k8s.io/kubernetes/pkg/apis/core"
3229
kclientset "k8s.io/kubernetes/pkg/client/clientset_generated/internalclientset"
3330
"k8s.io/kubernetes/pkg/kubectl"
3431
kcmdutil "k8s.io/kubernetes/pkg/kubectl/cmd/util"
3532
"k8s.io/kubernetes/pkg/kubectl/resource"
36-
"k8s.io/kubernetes/pkg/kubectl/util/transport"
3733

3834
appsapiv1 "github.com/openshift/api/apps/v1"
3935
appsapi "github.com/openshift/origin/pkg/apps/apis/apps"
@@ -61,67 +57,24 @@ type ClientAccessFactory interface {
6157
func NewClientAccessFactory(optionalClientConfig kclientcmd.ClientConfig) ClientAccessFactory {
6258
flags := pflag.NewFlagSet("", pflag.ContinueOnError)
6359
clientConfig := optionalClientConfig
60+
// TODO find a different home for the --config instead of --kubeconfig hack we have and eliminate the special construction
6461
if optionalClientConfig == nil {
65-
// TODO: there should be two client configs, one for OpenShift, and one for Kubernetes
6662
clientConfig = osclientcmd.DefaultClientConfig(flags)
6763
clientConfig = defaultingClientConfig{clientConfig}
6864
}
6965
factory := &ring0Factory{
7066
clientConfig: clientConfig,
7167
imageResolutionOptions: &imageResolutionOptions{},
7268
}
73-
factory.kubeClientAccessFactory = kcmdutil.NewClientAccessFactoryFromDiscovery(
69+
factory.kubeClientAccessFactory = kcmdutil.NewClientAccessFactoryFromFlags(
7470
flags,
7571
clientConfig,
76-
&discoveryFactory{clientConfig: clientConfig},
7772
)
7873
factory.OpenshiftCLIClientBuilder = &OpenshiftCLIClientBuilder{config: clientConfig}
7974

8075
return factory
8176
}
8277

83-
type discoveryFactory struct {
84-
clientConfig kclientcmd.ClientConfig
85-
cacheDir string
86-
}
87-
88-
func (f *discoveryFactory) BindFlags(flags *pflag.FlagSet) {
89-
defaultCacheDir := filepath.Join(homedir.HomeDir(), ".kube", "http-cache")
90-
flags.StringVar(&f.cacheDir, kcmdutil.FlagHTTPCacheDir, defaultCacheDir, "Default HTTP cache directory")
91-
}
92-
93-
func (f *discoveryFactory) DiscoveryClient() (discovery.CachedDiscoveryInterface, error) {
94-
// Output using whatever version was negotiated in the client cache. The
95-
// version we decode with may not be the same as what the server requires.
96-
cfg, err := f.clientConfig.ClientConfig()
97-
if err != nil {
98-
return nil, err
99-
}
100-
// given 25 groups with one-ish version each, discovery needs to make 50 requests
101-
// double it just so we don't end up here again for a while. This config is only used for discovery.
102-
cfg.Burst = 100
103-
104-
if f.cacheDir != "" {
105-
wt := cfg.WrapTransport
106-
cfg.WrapTransport = func(rt http.RoundTripper) http.RoundTripper {
107-
if wt != nil {
108-
rt = wt(rt)
109-
}
110-
return transport.NewCacheRoundTripper(f.cacheDir, rt)
111-
}
112-
}
113-
114-
// at this point we've negotiated and can get the client
115-
kubeClient, err := kclientset.NewForConfig(cfg)
116-
if err != nil {
117-
return nil, err
118-
119-
}
120-
121-
cacheDir := computeDiscoverCacheDir(filepath.Join(homedir.HomeDir(), ".kube", "cache", "discovery"), cfg.Host)
122-
return kcmdutil.NewCachedDiscoveryClient(newLegacyDiscoveryClient(kubeClient.Discovery().RESTClient()), cacheDir, time.Duration(10*time.Minute)), nil
123-
}
124-
12578
func (f *ring0Factory) OpenShiftClientConfig() kclientcmd.ClientConfig {
12679
return f.clientConfig
12780
}

pkg/oc/cli/util/clientcmd/legacy_discovery.go

-89
This file was deleted.

vendor/k8s.io/kubernetes/pkg/kubectl/cmd/util/factory_client_access.go

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)