Skip to content

Commit dabf403

Browse files
committed
run controller by wiring up to a command
1 parent 26b5a8c commit dabf403

File tree

4 files changed

+41
-94
lines changed

4 files changed

+41
-94
lines changed

pkg/cmd/server/kubernetes/master/controller/config.go

-47
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,9 @@
11
package controller
22

33
import (
4-
"fmt"
5-
"io/ioutil"
6-
"os"
7-
8-
"k8s.io/apimachinery/pkg/runtime"
9-
kerrors "k8s.io/apimachinery/pkg/util/errors"
104
kubecontroller "k8s.io/kubernetes/cmd/kube-controller-manager/app"
11-
scheduleroptions "k8s.io/kubernetes/plugin/cmd/kube-scheduler/app/options"
12-
schedulerapi "k8s.io/kubernetes/plugin/pkg/scheduler/api"
13-
latestschedulerapi "k8s.io/kubernetes/plugin/pkg/scheduler/api/latest"
145

156
configapi "github.com/openshift/origin/pkg/cmd/server/api"
16-
cmdflags "github.com/openshift/origin/pkg/cmd/util/flags"
177
"github.com/openshift/origin/pkg/cmd/util/variable"
188
"k8s.io/kubernetes/pkg/volume"
199
)
@@ -22,9 +12,6 @@ import (
2212
// launch the set of kube (not openshift) controllers.
2313
type KubeControllerConfig struct {
2414
HorizontalPodAutoscalerControllerConfig HorizontalPodAutoscalerControllerConfig
25-
26-
// TODO the scheduler should move out into its own logical component
27-
SchedulerControllerConfig SchedulerControllerConfig
2815
}
2916

3017
// GetControllerInitializers return the controller initializer functions for kube controllers
@@ -36,48 +23,14 @@ func (c KubeControllerConfig) GetControllerInitializers() (map[string]kubecontro
3623
// in openshift-infra, and pass it a scale client that knows how to scale DCs
3724
ret["horizontalpodautoscaling"] = c.HorizontalPodAutoscalerControllerConfig.RunController
3825

39-
// FIXME: Move this under openshift controller intialization once we figure out
40-
// deployment (options).
41-
ret["openshift.io/scheduler"] = c.SchedulerControllerConfig.RunController
42-
4326
return ret, nil
4427
}
4528

4629
// BuildKubeControllerConfig builds the struct to create the controller initializers. Eventually we want this to be fully
4730
// stock kube with no modification.
4831
func BuildKubeControllerConfig(options configapi.MasterConfig) (*KubeControllerConfig, error) {
49-
var err error
5032
ret := &KubeControllerConfig{}
5133

52-
kubeExternal, _, err := configapi.GetExternalKubeClient(options.MasterClients.OpenShiftLoopbackKubeConfig, options.MasterClients.OpenShiftLoopbackClientConnectionOverrides)
53-
if err != nil {
54-
return nil, err
55-
}
56-
57-
var schedulerPolicy *schedulerapi.Policy
58-
if _, err := os.Stat(options.KubernetesMasterConfig.SchedulerConfigFile); err == nil {
59-
schedulerPolicy = &schedulerapi.Policy{}
60-
configData, err := ioutil.ReadFile(options.KubernetesMasterConfig.SchedulerConfigFile)
61-
if err != nil {
62-
return nil, fmt.Errorf("unable to read scheduler config: %v", err)
63-
}
64-
if err := runtime.DecodeInto(latestschedulerapi.Codec, configData, schedulerPolicy); err != nil {
65-
return nil, fmt.Errorf("invalid scheduler configuration: %v", err)
66-
}
67-
}
68-
// resolve extended arguments
69-
// TODO: this should be done in config validation (along with the above) so we can provide
70-
// proper errors
71-
schedulerserver := scheduleroptions.NewSchedulerServer()
72-
schedulerserver.PolicyConfigFile = options.KubernetesMasterConfig.SchedulerConfigFile
73-
if err := cmdflags.Resolve(options.KubernetesMasterConfig.SchedulerArguments, schedulerserver.AddFlags); len(err) > 0 {
74-
return nil, kerrors.NewAggregate(err)
75-
}
76-
ret.SchedulerControllerConfig = SchedulerControllerConfig{
77-
PrivilegedClient: kubeExternal,
78-
SchedulerServer: schedulerserver,
79-
}
80-
8134
imageTemplate := variable.NewDefaultImageTemplate()
8235
imageTemplate.Format = options.ImageConfig.Format
8336
imageTemplate.Latest = options.ImageConfig.Latest

pkg/cmd/server/kubernetes/master/controller/core.go

-47
This file was deleted.

pkg/cmd/server/start/start_master.go

+12
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ import (
3434
kcmdutil "k8s.io/kubernetes/pkg/kubectl/cmd/util"
3535
kubelettypes "k8s.io/kubernetes/pkg/kubelet/types"
3636
"k8s.io/kubernetes/pkg/master"
37+
schedulerapp "k8s.io/kubernetes/plugin/cmd/kube-scheduler/app"
3738
kutilerrors "k8s.io/kubernetes/staging/src/k8s.io/apimachinery/pkg/util/errors"
3839

3940
assetapiserver "github.com/openshift/origin/pkg/assets/apiserver"
@@ -392,6 +393,13 @@ func (m *Master) Start() error {
392393

393394
controllersEnabled := m.controllers && m.config.Controllers != configapi.ControllersDisabled
394395
if controllersEnabled {
396+
// start the scheduler
397+
// TODO we need a real identity for this. Right now it's just using the loopback connection like it used to.
398+
scheduler, err := newScheduler(m.config.MasterClients.OpenShiftLoopbackKubeConfig, m.config.KubernetesMasterConfig.SchedulerConfigFile, m.config.KubernetesMasterConfig.SchedulerArguments)
399+
if err != nil {
400+
return err
401+
}
402+
395403
// informers are shared amongst all the various controllers we build
396404
informers, err := NewInformers(*m.config)
397405
if err != nil {
@@ -472,6 +480,10 @@ func (m *Master) Start() error {
472480
go func() {
473481
controllerPlug.WaitForStart()
474482

483+
// this does a second leader election, but doing the second leader election will allow us to move out process in
484+
// 3.8 if we so choose.
485+
go schedulerapp.Run(scheduler)
486+
475487
controllerContext, err := getControllerContext(*m.config, kubeControllerManagerConfig, cloudProvider, informers, utilwait.NeverStop)
476488
if err != nil {
477489
glog.Fatal(err)
+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
package start
2+
3+
import (
4+
kerrors "k8s.io/apimachinery/pkg/util/errors"
5+
scheduleroptions "k8s.io/kubernetes/plugin/cmd/kube-scheduler/app/options"
6+
_ "k8s.io/kubernetes/plugin/pkg/scheduler/algorithmprovider"
7+
8+
cmdflags "github.com/openshift/origin/pkg/cmd/util/flags"
9+
)
10+
11+
func newScheduler(kubeconfigFile, schedulerConfigFile string, cmdLineArgs map[string][]string) (*scheduleroptions.SchedulerServer, error) {
12+
if cmdLineArgs == nil {
13+
cmdLineArgs = map[string][]string{}
14+
}
15+
if len(cmdLineArgs["kubeconfig"]) == 0 {
16+
cmdLineArgs["kubeconfig"] = []string{kubeconfigFile}
17+
}
18+
if len(cmdLineArgs["policy-config-file"]) == 0 {
19+
cmdLineArgs["policy-config-file"] = []string{schedulerConfigFile}
20+
}
21+
22+
// resolve arguments
23+
schedulerserver := scheduleroptions.NewSchedulerServer()
24+
if err := cmdflags.Resolve(cmdLineArgs, schedulerserver.AddFlags); len(err) > 0 {
25+
return nil, kerrors.NewAggregate(err)
26+
}
27+
28+
return schedulerserver, nil
29+
}

0 commit comments

Comments
 (0)