Skip to content

Commit 6bb3e85

Browse files
committed
break dependencies on pkg/cmd/util/clientcmd
This patch is a part of pull/17356 - it aims to break all dependencies between packages outside of `pkg/oc` and the `clientcmd` package. To achieve this, this patch creates a new package containing only the functions and objects found in `clientcmd` that are needed by its dependents outside of the `pkg/oc` subtree. Once this is done, all of the remaining logic (which should only be used by packages within `pkg/oc` is moved to `pkg/oc/cli/util/clientcmd` by pull/17356). This change acknowledges the possibility of having dependents for `pkg/cmd/util/clientconfig` within the `pkg/oc` subtree.
1 parent e16fc4a commit 6bb3e85

File tree

12 files changed

+47
-4
lines changed

12 files changed

+47
-4
lines changed

pkg/client/cmd/clientcmd.go

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
package clientconfig
2+
3+
import (
4+
"k8s.io/kubernetes/pkg/api"
5+
)
6+
7+
func EnvVars(host string, caData []byte, insecure bool, bearerTokenFile string) []api.EnvVar {
8+
envvars := []api.EnvVar{
9+
{Name: "KUBERNETES_MASTER", Value: host},
10+
{Name: "OPENSHIFT_MASTER", Value: host},
11+
}
12+
13+
if len(bearerTokenFile) > 0 {
14+
envvars = append(envvars, api.EnvVar{Name: "BEARER_TOKEN_FILE", Value: bearerTokenFile})
15+
}
16+
17+
if len(caData) > 0 {
18+
envvars = append(envvars, api.EnvVar{Name: "OPENSHIFT_CA_DATA", Value: string(caData)})
19+
} else if insecure {
20+
envvars = append(envvars, api.EnvVar{Name: "OPENSHIFT_INSECURE", Value: "true"})
21+
}
22+
23+
return envvars
24+
}

pkg/cmd/server/origin/controller/config.go

+20-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,25 @@ import (
1818
"github.com/openshift/origin/pkg/oc/cli/util/clientcmd"
1919
)
2020

21+
func envVars(host string, caData []byte, insecure bool, bearerTokenFile string) []kapi.EnvVar {
22+
envvars := []kapi.EnvVar{
23+
{Name: "KUBERNETES_MASTER", Value: host},
24+
{Name: "OPENSHIFT_MASTER", Value: host},
25+
}
26+
27+
if len(bearerTokenFile) > 0 {
28+
envvars = append(envvars, kapi.EnvVar{Name: "BEARER_TOKEN_FILE", Value: bearerTokenFile})
29+
}
30+
31+
if len(caData) > 0 {
32+
envvars = append(envvars, kapi.EnvVar{Name: "OPENSHIFT_CA_DATA", Value: string(caData)})
33+
} else if insecure {
34+
envvars = append(envvars, kapi.EnvVar{Name: "OPENSHIFT_INSECURE", Value: "true"})
35+
}
36+
37+
return envvars
38+
}
39+
2140
func getOpenShiftClientEnvVars(options configapi.MasterConfig) ([]kapi.EnvVar, error) {
2241
_, kclientConfig, err := configapi.GetInternalKubeClient(
2342
options.MasterClients.OpenShiftLoopbackKubeConfig,
@@ -26,7 +45,7 @@ func getOpenShiftClientEnvVars(options configapi.MasterConfig) ([]kapi.EnvVar, e
2645
if err != nil {
2746
return nil, err
2847
}
29-
return clientcmd.EnvVars(
48+
return envVars(
3049
kclientConfig.Host,
3150
kclientConfig.CAData,
3251
kclientConfig.Insecure,

pkg/federation/kubefed/kubefed.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ import (
1313
"k8s.io/kubernetes/federation/pkg/kubefed/util"
1414
kubectl "k8s.io/kubernetes/pkg/kubectl/cmd"
1515
"k8s.io/kubernetes/pkg/kubectl/cmd/templates"
16+
kcmdutil "k8s.io/kubernetes/pkg/kubectl/cmd/util"
1617

17-
osclientcmd "github.com/openshift/origin/pkg/oc/cli/util/clientcmd"
1818
"github.com/openshift/origin/pkg/version"
1919
)
2020

@@ -51,7 +51,8 @@ func NewKubeFedCommand(in io.Reader, out, err io.Writer) *cobra.Command {
5151
// Use an openshift command factory to ensure CmdNewVersion will work.
5252
// It is interface compatible with the kube equivalent, so any calls to
5353
// kube code will continue to work.
54-
f := osclientcmd.New(cmds.PersistentFlags())
54+
//f := osclientcmd.New(cmds.PersistentFlags())
55+
f := kcmdutil.NewFactory(nil)
5556

5657
// From this point and forward we get warnings on flags that contain "_" separators
5758
cmds.SetGlobalNormalizationFunc(flag.WarnWordSepNormalizeFunc)
@@ -73,7 +74,6 @@ func NewKubeFedCommand(in io.Reader, out, err io.Writer) *cobra.Command {
7374
}
7475
templates.ActsAsRootCommand(cmds, filters, groups...)
7576

76-
// Use the openshift-specific version command
7777
cmds.AddCommand(kubectl.NewCmdOptions(out))
7878

7979
return cmds
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)