mirror of
https://github.com/stakater/Reloader.git
synced 2026-08-22 05:26:18 +00:00
13 lines
562 B
Go
13 lines
562 B
Go
package options
|
|
|
|
var (
|
|
// ConfigmapUpdateOnChangeAnnotation is an annotation to detect changes in configmaps
|
|
ConfigmapUpdateOnChangeAnnotation = "configmap.reloader.stakater.com/reload"
|
|
// SecretUpdateOnChangeAnnotation is an annotation to detect changes in secrets
|
|
SecretUpdateOnChangeAnnotation = "secret.reloader.stakater.com/reload"
|
|
// ReloaderAutoAnnotation is an annotation to detect changes in secrets
|
|
ReloaderAutoAnnotation = "reloader.stakater.com/auto"
|
|
// LogFormat is the log format to use (json, or empty string for default)
|
|
LogFormat = ""
|
|
)
|