mirror of
https://github.com/stakater/Reloader.git
synced 2026-03-02 17:30:19 +00:00
* Optimize logging in reloader * Fix test case failing issue * Implement PR-19 review comments * Place the log out of loop * Fix change detection log
11 lines
297 B
Go
11 lines
297 B
Go
package constants
|
|
|
|
const (
|
|
// ConfigmapEnvVarPostfix is a postfix for configmap envVar
|
|
ConfigmapEnvVarPostfix = "CONFIGMAP"
|
|
// SecretEnvVarPostfix is a postfix for secret envVar
|
|
SecretEnvVarPostfix = "SECRET"
|
|
// EnvVarPrefix is a Prefix for environment variable
|
|
EnvVarPrefix = "STAKATER_"
|
|
)
|