Reloader's working can be verified by three ways.
Check the logs of Reloader and verify that you can see logs looks like below, if you are able to find these logs then it means Reloader is working.
Changes Detected in test-object of type 'SECRET' in namespace: test-reloader
Updated test-resource of type Deployment in namespace: test-reloader
Below are the details that explain these logs:
test-object
is the name of a secret
or a deployment
in which change has been detected.
SECRET
is the type of test-object
. It can either be SECRET
or CONFIGMAP
test-reloader
is the name of namespace in which Reloader has detected the change.
test-resource
is the name of resource which is going to be updated
Deployment
is the type of test-resource
. It can either be a Deployment
, Daemonset
or Statefulset
A pod's age can tell whether Reloader is working correctly or not. If you know that a change in a secret
or configmap
has occurred, then check the relevant Pod's age immediately. It should be newly created few moments ago.
kubernetes dashboard
can be used to verify the working of Reloader. After a change in secret
or configmap
, check the relevant Pod's age from dashboard. It should be newly created few moments ago.
After a change in secret
or configmap
. Run the below-mentioned command and verify that the pod is newly created.
kubectl get pods <pod name> -n <namespace name>
Some metrics are exported to Prometheus endpoint /metrics
on port 9090
.
When Reloader is unable to reload, reloader_reload_executed_total{success="false"}
metric gets incremented and when it reloads successfully, reloader_reload_executed_total{success="true"}
gets incremented. You will be able to see the following metrics, with some other metrics, at /metrics
endpoint.
reloader_reload_executed_total{success="false"} 15
reloader_reload_executed_total{success="true"} 12