mirror of
https://github.com/stakater/Reloader.git
synced 2026-08-22 13:36:54 +00:00
11 lines
299 B
Go
11 lines
299 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_"
|
|
)
|