Reloader with FluxCD and Kustomize
Overview Reloader is a lightweight Kubernetes controller from Stakater that automatically restarts pods when their mounted ConfigMaps or Secrets change. Normally, if you update a ConfigMap or Secret in Kubernetes, the pods consuming it don’t pick up the changes automatically. You either need to roll out the Deployment manually, or write your own automation. That’s where Reloader comes in 🚀 It watches for updates to ConfigMaps and Secrets, and then triggers a rolling restart of Deployments, StatefulSets, or DaemonSets that reference them. ...