@@ -4,13 +4,11 @@ import (
4
4
"errors"
5
5
"fmt"
6
6
"io/ioutil"
7
- "net/http"
8
7
"os"
9
8
"path/filepath"
10
9
"regexp"
11
10
"strconv"
12
11
"strings"
13
- "time"
14
12
15
13
"github.com/golang/glog"
16
14
"github.com/spf13/cobra"
@@ -27,13 +25,11 @@ import (
27
25
restclient "k8s.io/client-go/rest"
28
26
kclientcmd "k8s.io/client-go/tools/clientcmd"
29
27
kclientcmdapi "k8s.io/client-go/tools/clientcmd/api"
30
- "k8s.io/client-go/util/homedir"
31
28
kapi "k8s.io/kubernetes/pkg/apis/core"
32
29
kclientset "k8s.io/kubernetes/pkg/client/clientset_generated/internalclientset"
33
30
"k8s.io/kubernetes/pkg/kubectl"
34
31
kcmdutil "k8s.io/kubernetes/pkg/kubectl/cmd/util"
35
32
"k8s.io/kubernetes/pkg/kubectl/resource"
36
- "k8s.io/kubernetes/pkg/kubectl/util/transport"
37
33
38
34
appsapiv1 "github.com/openshift/api/apps/v1"
39
35
appsapi "github.com/openshift/origin/pkg/apps/apis/apps"
@@ -61,67 +57,24 @@ type ClientAccessFactory interface {
61
57
func NewClientAccessFactory (optionalClientConfig kclientcmd.ClientConfig ) ClientAccessFactory {
62
58
flags := pflag .NewFlagSet ("" , pflag .ContinueOnError )
63
59
clientConfig := optionalClientConfig
60
+ // TODO find a different home for the --config instead of --kubeconfig hack we have and eliminate the special construction
64
61
if optionalClientConfig == nil {
65
- // TODO: there should be two client configs, one for OpenShift, and one for Kubernetes
66
62
clientConfig = osclientcmd .DefaultClientConfig (flags )
67
63
clientConfig = defaultingClientConfig {clientConfig }
68
64
}
69
65
factory := & ring0Factory {
70
66
clientConfig : clientConfig ,
71
67
imageResolutionOptions : & imageResolutionOptions {},
72
68
}
73
- factory .kubeClientAccessFactory = kcmdutil .NewClientAccessFactoryFromDiscovery (
69
+ factory .kubeClientAccessFactory = kcmdutil .NewClientAccessFactoryFromFlags (
74
70
flags ,
75
71
clientConfig ,
76
- & discoveryFactory {clientConfig : clientConfig },
77
72
)
78
73
factory .OpenshiftCLIClientBuilder = & OpenshiftCLIClientBuilder {config : clientConfig }
79
74
80
75
return factory
81
76
}
82
77
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
-
125
78
func (f * ring0Factory ) OpenShiftClientConfig () kclientcmd.ClientConfig {
126
79
return f .clientConfig
127
80
}
0 commit comments