Skip to content

Commit 41215b8

Browse files
Allow in-cluster config for oc
Because we set the default env value to empty, we can't use the default in cluster config for 'oc' (when you run inside a container, oc works). It's really important for container integration scenarios that oc uses the service account token by default, just like kubeconfig.
1 parent d512cd0 commit 41215b8

File tree

2 files changed

+55
-3
lines changed

2 files changed

+55
-3
lines changed

hack/test-cmd.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ atomic-enterprise start \
187187
"${NODE_CONFIG_DIR}/node-config.yaml"
188188

189189
# test client not configured
190-
[ "$(oc get services 2>&1 | grep 'Error in configuration')" ]
190+
[ "$(oc get services 2>&1 | grep 'No configuration file found, please login')" ]
191191

192192
# Set KUBERNETES_MASTER for oc from now on
193193
export KUBERNETES_MASTER="${API_SCHEME}://${API_HOST}:${API_PORT}"

pkg/cmd/util/clientcmd/factory.go

+54-2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ package clientcmd
33
import (
44
"errors"
55
"fmt"
6+
"os"
7+
"reflect"
68
"sort"
79
"strconv"
810
"time"
@@ -13,6 +15,7 @@ import (
1315
"k8s.io/kubernetes/pkg/api/meta"
1416
kclient "k8s.io/kubernetes/pkg/client/unversioned"
1517
kclientcmd "k8s.io/kubernetes/pkg/client/unversioned/clientcmd"
18+
kclientcmdapi "k8s.io/kubernetes/pkg/client/unversioned/clientcmd/api"
1619
"k8s.io/kubernetes/pkg/fields"
1720
"k8s.io/kubernetes/pkg/kubectl"
1821
cmdutil "k8s.io/kubernetes/pkg/kubectl/cmd/util"
@@ -33,24 +36,73 @@ import (
3336
routegen "github.com/openshift/origin/pkg/route/generator"
3437
)
3538

39+
// defaultClusterConfigURL is a local name that is used to identify when the client config
40+
// is unspecified.
41+
const defaultClusterConfigURL = "https://localhost:8443"
42+
3643
// New creates a default Factory for commands that should share identical server
3744
// connection behavior. Most commands should use this method to get a factory.
3845
func New(flags *pflag.FlagSet) *Factory {
39-
// Override global default to "" so we force the client to ask for user input
4046
// TODO refactor this upstream:
4147
// DefaultCluster should not be a global
4248
// A call to ClientConfig() should always return the best clientCfg possible
4349
// even if an error was returned, and let the caller decide what to do
44-
kclientcmd.DefaultCluster.Server = ""
50+
kclientcmd.DefaultCluster.Server = defaultClusterConfigURL
4551

4652
// TODO: there should be two client configs, one for OpenShift, and one for Kubernetes
4753
clientConfig := DefaultClientConfig(flags)
54+
clientConfig = defaultingClientConfig{clientConfig}
4855
f := NewFactory(clientConfig)
4956
f.BindFlags(flags)
5057

5158
return f
5259
}
5360

61+
// defaultingClientConfig detects whether the provided config is the default, and if
62+
// so returns an error that indicates the user should set up their config.
63+
type defaultingClientConfig struct {
64+
nested kclientcmd.ClientConfig
65+
}
66+
67+
// RawConfig calls the nested method
68+
func (c defaultingClientConfig) RawConfig() (kclientcmdapi.Config, error) {
69+
return c.nested.RawConfig()
70+
}
71+
72+
// Namespace calls the nested method
73+
func (c defaultingClientConfig) Namespace() (string, bool, error) {
74+
return c.nested.Namespace()
75+
}
76+
77+
// ClientConfig returns a complete client config
78+
func (c defaultingClientConfig) ClientConfig() (*kclient.Config, error) {
79+
cfg, err := c.nested.ClientConfig()
80+
if err != nil {
81+
return nil, err
82+
}
83+
if isDefaultConfig(cfg) {
84+
return nil, fmt.Errorf(`No configuration file found, please login or point to an existing file:
85+
86+
1. Via the command-line flag --config
87+
2. Via the KUBECONFIG environment variable
88+
3. In your home directory as ~/.kube/config
89+
90+
To view or setup config directly use the 'config' command.`)
91+
}
92+
return cfg, nil
93+
}
94+
95+
func isDefaultConfig(cfg *kclient.Config) bool {
96+
if len(os.Getenv("KUBERNETES_MASTER")) > 0 {
97+
return false
98+
}
99+
defaultConfig, err := kclientcmd.DefaultClientConfig.ClientConfig()
100+
if err != nil {
101+
return false
102+
}
103+
return reflect.DeepEqual(cfg, defaultConfig)
104+
}
105+
54106
// Factory provides common options for OpenShift commands
55107
type Factory struct {
56108
*cmdutil.Factory

0 commit comments

Comments
 (0)