Make operator watch its own namespace instead of controller's one

This commit is contained in:
Sergey Dudoladov 2018-02-16 14:22:38 +01:00
parent 7b74da8713
commit ec7de38f9b
1 changed files with 2 additions and 2 deletions

View File

@ -105,8 +105,8 @@ func (c *Controller) initOperatorConfig() {
}
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)
configMapData["watched_namespace"] = 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"] = spec.GetOperatorNamespace()
}
if c.config.NoDatabaseAccess {