Merge pull request #238 from zalando-incubator/correctly-select-deployed-ns
Make operator watch its own namespace instead of controller's one
This commit is contained in:
commit
c09968774b
|
|
@ -105,8 +105,8 @@ func (c *Controller) initOperatorConfig() {
|
||||||
}
|
}
|
||||||
|
|
||||||
if configMapData["watched_namespace"] == "" {
|
if configMapData["watched_namespace"] == "" {
|
||||||
c.logger.Infof("No namespace to watch specified. By convention, the operator falls back to watching the namespace it is deployed to: '%v' \n", c.config.Namespace)
|
c.logger.Infof("No namespace to watch specified. By convention, the operator falls back to watching the namespace it is deployed to: '%v' \n", spec.GetOperatorNamespace())
|
||||||
configMapData["watched_namespace"] = c.config.Namespace
|
configMapData["watched_namespace"] = spec.GetOperatorNamespace()
|
||||||
}
|
}
|
||||||
|
|
||||||
if c.config.NoDatabaseAccess {
|
if c.config.NoDatabaseAccess {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue