forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.go
44 lines (34 loc) · 1.79 KB
/
config.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package controller
import (
kubecontroller "k8s.io/kubernetes/cmd/kube-controller-manager/app"
configapi "github.com/openshift/origin/pkg/cmd/server/api"
"github.com/openshift/origin/pkg/cmd/util/variable"
"k8s.io/kubernetes/pkg/volume"
)
// KubeControllerConfig is the runtime (non-serializable) config object used to
// launch the set of kube (not openshift) controllers.
type KubeControllerConfig struct {
HorizontalPodAutoscalerControllerConfig HorizontalPodAutoscalerControllerConfig
}
// GetControllerInitializers return the controller initializer functions for kube controllers
// TODO in 3.7, CloudProvider is on the context
func (c KubeControllerConfig) GetControllerInitializers() (map[string]kubecontroller.InitFunc, error) {
ret := kubecontroller.NewControllerInitializers()
// overrides the Kube HPA controller config, so that we can point it at an HTTPS Heapster
// in openshift-infra, and pass it a scale client that knows how to scale DCs
ret["horizontalpodautoscaling"] = c.HorizontalPodAutoscalerControllerConfig.RunController
return ret, nil
}
// BuildKubeControllerConfig builds the struct to create the controller initializers. Eventually we want this to be fully
// stock kube with no modification.
func BuildKubeControllerConfig(options configapi.MasterConfig) (*KubeControllerConfig, error) {
ret := &KubeControllerConfig{}
imageTemplate := variable.NewDefaultImageTemplate()
imageTemplate.Format = options.ImageConfig.Format
imageTemplate.Latest = options.ImageConfig.Latest
volume.NewPersistentVolumeRecyclerPodTemplate = newPersistentVolumeRecyclerPodTemplate(imageTemplate.ExpandOrDie("recycler"))
ret.HorizontalPodAutoscalerControllerConfig = HorizontalPodAutoscalerControllerConfig{
HeapsterNamespace: options.PolicyConfig.OpenShiftInfrastructureNamespace,
}
return ret, nil
}