Merge pull request #205 from zalando-incubator/scalyr-api-key
Overwrite scalyr api key if the relevant env var is present in the operator pod
This commit is contained in:
		
						commit
						8c9033df28
					
				|  | @ -2,6 +2,7 @@ package controller | ||||||
| 
 | 
 | ||||||
| import ( | import ( | ||||||
| 	"fmt" | 	"fmt" | ||||||
|  | 	"os" | ||||||
| 	"sync" | 	"sync" | ||||||
| 
 | 
 | ||||||
| 	"github.com/Sirupsen/logrus" | 	"github.com/Sirupsen/logrus" | ||||||
|  | @ -107,6 +108,11 @@ func (c *Controller) initOperatorConfig() { | ||||||
| 	} | 	} | ||||||
| 
 | 
 | ||||||
| 	c.opConfig = config.NewFromMap(configMapData) | 	c.opConfig = config.NewFromMap(configMapData) | ||||||
|  | 
 | ||||||
|  | 	scalyrAPIKey := os.Getenv("SCALYR_API_KEY") | ||||||
|  | 	if scalyrAPIKey != "" { | ||||||
|  | 		c.opConfig.ScalyrAPIKey = scalyrAPIKey | ||||||
|  | 	} | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| func (c *Controller) initController() { | func (c *Controller) initController() { | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue