mirror of
https://github.com/stakater/Reloader.git
synced 2026-08-23 22:16:45 +00:00
8 lines
637 B
Plaintext
8 lines
637 B
Plaintext
- For a `Deployment` called `foo` have a `ConfigMap` called `foo-configmap`. Then add this annotation to main metadata of your `Deployment`
|
|
{{ .Values.reloader.custom_annotations.configmap | default "configmap.reloader.stakater.com/reload" }}: "foo-configmap"
|
|
|
|
- For a `Deployment` called `foo` have a `Secret` called `foo-secret`. Then add this annotation to main metadata of your `Deployment`
|
|
{{ .Values.reloader.custom_annotations.secret | default "secret.reloader.stakater.com/reload" }}: "foo-secret"
|
|
|
|
- After successful installation, your pods will get rolling updates when a change in data of configmap or secret will happen.
|