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:
zerg-junior 2018-02-16 14:31:54 +01:00 committed by GitHub
commit c09968774b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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 {