remove unnecessary ControllerNamespace
This commit is contained in:
parent
416dace289
commit
fc127069ab
|
|
@ -32,11 +32,10 @@ var (
|
||||||
|
|
||||||
//TODO: remove struct duplication
|
//TODO: remove struct duplication
|
||||||
type Config struct {
|
type Config struct {
|
||||||
ControllerNamespace string
|
KubeClient *kubernetes.Clientset //TODO: move clients to the better place?
|
||||||
KubeClient *kubernetes.Clientset //TODO: move clients to the better place?
|
RestClient *rest.RESTClient
|
||||||
RestClient *rest.RESTClient
|
EtcdClient etcdclient.KeysAPI
|
||||||
EtcdClient etcdclient.KeysAPI
|
TeamsAPIClient *teams.TeamsAPI
|
||||||
TeamsAPIClient *teams.TeamsAPI
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type KubeResources struct {
|
type KubeResources struct {
|
||||||
|
|
|
||||||
|
|
@ -12,11 +12,10 @@ import (
|
||||||
|
|
||||||
func (c *Controller) makeClusterConfig() cluster.Config {
|
func (c *Controller) makeClusterConfig() cluster.Config {
|
||||||
return cluster.Config{
|
return cluster.Config{
|
||||||
ControllerNamespace: c.config.PodNamespace,
|
KubeClient: c.config.KubeClient,
|
||||||
KubeClient: c.config.KubeClient,
|
RestClient: c.config.RestClient,
|
||||||
RestClient: c.config.RestClient,
|
EtcdClient: c.config.EtcdClient,
|
||||||
EtcdClient: c.config.EtcdClient,
|
TeamsAPIClient: c.config.TeamsAPIClient,
|
||||||
TeamsAPIClient: c.config.TeamsAPIClient,
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue