Reloader By R1n Github Verified [upd] -

Run the following to inspect the image signature (using cosign):

kubectl get pods -n reloader Now comes the practical part. To tell Reloader which deployments to watch, you must add specific annotations . Example 1: Auto-Reload on Any ConfigMap Change Annotate your deployment to watch all ConfigMaps and Secrets. reloader by r1n github verified

apiVersion: apps/v1 kind: Deployment metadata: name: my-app annotations: reloader.stakater.com/auto: "true" spec: template: metadata: labels: app: my-app spec: containers: - name: app image: nginx envFrom: - configMapRef: name: app-config When app-config changes, Reloader will restart my-app . To avoid unnecessary restarts, specify exactly which resources to watch: Run the following to inspect the image signature

annotations: reloader.stakater.com/search: "true" configmap.reloader.stakater.com/reload: "app-config,db-config" secret.reloader.stakater.com/reload: "db-credentials" Now, only changes to those specific ConfigMaps and Secrets will trigger a restart. Given the keyword "verified," let's discuss how to confirm you have the genuine Reloader. Check the Container Image Source The official Reloader image is located at: ghcr.io/r1n/reloader or quay.io/stakater/reloader Check the Container Image Source The official Reloader