Skip to content

Commit 49be0e9

Browse files
author
OpenShift Bot
committed
Merge pull request #5722 from smarterclayton/allow_incluster_config
Merged by openshift-bot
2 parents 49fcd7f + 13cc7c6 commit 49be0e9

File tree

10 files changed

+154
-10
lines changed

10 files changed

+154
-10
lines changed

Godeps/_workspace/src/k8s.io/kubernetes/pkg/client/unversioned/clientcmd/api/helpers.go

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

Godeps/_workspace/src/k8s.io/kubernetes/pkg/client/unversioned/clientcmd/api/types.go

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

Godeps/_workspace/src/k8s.io/kubernetes/pkg/client/unversioned/clientcmd/client_config.go

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

Godeps/_workspace/src/k8s.io/kubernetes/pkg/client/unversioned/clientcmd/validation.go

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

Godeps/_workspace/src/k8s.io/kubernetes/pkg/client/unversioned/clientcmd/validation_test.go

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

Godeps/_workspace/src/k8s.io/kubernetes/pkg/client/unversioned/helper.go

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

hack/test-cmd.sh

+6-1
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,12 @@ 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')" ]
191+
unused_port="33333"
192+
# setting env bypasses the not configured message
193+
[ "$(KUBERNETES_MASTER=http://${API_HOST}:${unused_port} oc get services 2>&1 | grep 'did you specify the right host or port')" ]
194+
# setting --server bypasses the not configured message
195+
[ "$(oc get services --server=http://${API_HOST}:${unused_port} 2>&1 | grep 'did you specify the right host or port')" ]
191196

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

hack/util.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ function configure_os_server {
6565
# find the same IP that openshift start will bind to. This allows access from pods that have to talk back to master
6666
if [[ -z "${ALL_IP_ADDRESSES-}" ]]; then
6767
ALL_IP_ADDRESSES="$(openshift start --print-ip)"
68-
SERVER_HOSTNAME_LIST="${PUBLIC_MASTER_HOST},localhost"
68+
SERVER_HOSTNAME_LIST="${PUBLIC_MASTER_HOST},localhost,172.30.0.1"
6969

7070
while read -r IP_ADDRESS
7171
do

pkg/cmd/util/clientcmd/factory.go

+61-1
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,20 @@ package clientcmd
33
import (
44
"errors"
55
"fmt"
6+
"os"
67
"sort"
78
"strconv"
89
"time"
910

11+
"github.com/golang/glog"
12+
1013
"github.com/spf13/pflag"
1114
"k8s.io/kubernetes/pkg/api"
1215
kerrors "k8s.io/kubernetes/pkg/api/errors"
1316
"k8s.io/kubernetes/pkg/api/meta"
1417
kclient "k8s.io/kubernetes/pkg/client/unversioned"
1518
kclientcmd "k8s.io/kubernetes/pkg/client/unversioned/clientcmd"
19+
kclientcmdapi "k8s.io/kubernetes/pkg/client/unversioned/clientcmd/api"
1620
"k8s.io/kubernetes/pkg/fields"
1721
"k8s.io/kubernetes/pkg/kubectl"
1822
cmdutil "k8s.io/kubernetes/pkg/kubectl/cmd/util"
@@ -36,7 +40,6 @@ import (
3640
// New creates a default Factory for commands that should share identical server
3741
// connection behavior. Most commands should use this method to get a factory.
3842
func New(flags *pflag.FlagSet) *Factory {
39-
// Override global default to "" so we force the client to ask for user input
4043
// TODO refactor this upstream:
4144
// DefaultCluster should not be a global
4245
// A call to ClientConfig() should always return the best clientCfg possible
@@ -45,12 +48,69 @@ func New(flags *pflag.FlagSet) *Factory {
4548

4649
// TODO: there should be two client configs, one for OpenShift, and one for Kubernetes
4750
clientConfig := DefaultClientConfig(flags)
51+
clientConfig = defaultingClientConfig{clientConfig}
4852
f := NewFactory(clientConfig)
4953
f.BindFlags(flags)
5054

5155
return f
5256
}
5357

58+
// defaultingClientConfig detects whether the provided config is the default, and if
59+
// so returns an error that indicates the user should set up their config.
60+
type defaultingClientConfig struct {
61+
nested kclientcmd.ClientConfig
62+
}
63+
64+
// RawConfig calls the nested method
65+
func (c defaultingClientConfig) RawConfig() (kclientcmdapi.Config, error) {
66+
return c.nested.RawConfig()
67+
}
68+
69+
// Namespace calls the nested method, and if an empty config error is returned
70+
// it checks for the same default as kubectl - the value of POD_NAMESPACE or
71+
// "default".
72+
func (c defaultingClientConfig) Namespace() (string, bool, error) {
73+
namespace, ok, err := c.nested.Namespace()
74+
if err == nil {
75+
return namespace, ok, nil
76+
}
77+
if !kclientcmd.IsEmptyConfig(err) {
78+
return "", false, err
79+
}
80+
// TODO: can we inject the namespace as a file in the secret?
81+
namespace = os.Getenv("POD_NAMESPACE")
82+
if len(namespace) == 0 {
83+
return api.NamespaceDefault, false, nil
84+
}
85+
return namespace, true, nil
86+
}
87+
88+
// ClientConfig returns a complete client config
89+
func (c defaultingClientConfig) ClientConfig() (*kclient.Config, error) {
90+
cfg, err := c.nested.ClientConfig()
91+
if err == nil {
92+
return cfg, nil
93+
}
94+
95+
if !kclientcmd.IsEmptyConfig(err) {
96+
return nil, err
97+
}
98+
99+
// TODO: need to expose inClusterConfig upstream and use that
100+
if icc, err := kclient.InClusterConfig(); err == nil {
101+
glog.V(4).Infof("Using in-cluster configuration")
102+
return icc, nil
103+
}
104+
105+
return nil, fmt.Errorf(`No configuration file found, please login or point to an existing file:
106+
107+
1. Via the command-line flag --config
108+
2. Via the KUBECONFIG environment variable
109+
3. In your home directory as ~/.kube/config
110+
111+
To view or setup config directly use the 'config' command.`)
112+
}
113+
54114
// Factory provides common options for OpenShift commands
55115
type Factory struct {
56116
*cmdutil.Factory

test/end-to-end/core.sh

+19
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,25 @@ oc login -u e2e-user
137137
oc project test
138138
oc whoami
139139

140+
echo "[INFO] Running a CLI command in a container using the service account"
141+
echo "[INFO] WARNING: Tests are set to not fail, dockererized container is writing an invalid ca.crt"
142+
set +e
143+
oc policy add-role-to-user view -z default
144+
out=$(oc run cli-with-token --attach --env=POD_NAMESPACE=test --image=openshift/origin:${TAG} --restart=Never -- cli status --loglevel=4 2>&1)
145+
echo $out
146+
[ "$(echo $out | grep 'Using in-cluster configuration')" ]
147+
[ "$(echo $out | grep 'In project test')" ]
148+
oc delete pod cli-with-token
149+
out=$(oc run cli-with-token-2 --attach --env=POD_NAMESPACE=test --image=openshift/origin:${TAG} --restart=Never -- cli whoami --loglevel=4 2>&1)
150+
echo $out
151+
[ "$(echo $out | grep 'system:serviceaccount:test:default')" ]
152+
oc delete pod cli-with-token-2
153+
out=$(oc run kubectl-with-token --attach --env=POD_NAMESPACE=test --image=openshift/origin:${TAG} --restart=Never --command -- kubectl get pods --loglevel=4 2>&1)
154+
echo $out
155+
[ "$(echo $out | grep 'Using in-cluster configuration')" ]
156+
[ "$(echo $out | grep 'kubectl-with-token')" ]
157+
set -e
158+
140159
echo "[INFO] Streaming the logs from a deployment twice..."
141160
oc create -f test/fixtures/failing-dc.yaml
142161
tryuntil oc get rc/failing-dc-1

0 commit comments

Comments
 (0)