Mar 26, 2025
Reloader + Kubernetes: Hot Reload ConfigMaps & Secrets
Kubernetes is great for orchestrating containerized applications, but there's a common challenge: when you update a ConfigMap or Secret, pods don't automatically restart to pick up the new configuration. This means you often need to manually trigger a rollout or restart pods after configuration changes - which can be cumbersome in production environments.
Enter Stakater Reloader: a simple but powerful Kubernetes controller that watches for changes in ConfigMaps and Secrets and automatically triggers deployments to restart when their configurations change. Let's explore how to set this up.
Prerequisites
Kubernetes cluster
Git (to clone the repository)
New to Kubernetes? Check out our Kubernetes Training course
Getting Started
Clone the repository containing the complete example:
Understanding the Demo Setup
This demo includes:
A PostgreSQL deployment that reads configuration from ConfigMaps and Secrets
A client application that connects to PostgreSQL
The Stakater Reloader that watches for configuration changes
Updated configurations that will trigger automatic reloads
Let's examine each part of the setup and its role in the demonstration.
Step 1: Setting Up the Namespace
First, we'll create a dedicated namespace for our demo:
Step 2: Setting Up Reloader with RBAC
Reloader needs proper permissions to watch resources and trigger updates:
Key elements of the RBAC configuration:
Step 3: Deploying the Reloader
Now we deploy the Reloader controller:
Step 4: Creating Initial Configuration
Let's set up the initial PostgreSQL configuration:
The key part here is the reloader.stakater.com/auto: "true"
annotation on both the ConfigMap and Secret. This tells Reloader to watch these resources for changes.
Step 5: Deploying PostgreSQL
Now we deploy PostgreSQL with configuration from our ConfigMap and Secret:
Key elements of the PostgreSQL deployment:
The crucial part here is the annotations in the pod template metadata section:
configmap.reloader.stakater.com/reload: "postgres-config"
secret.reloader.stakater.com/reload: "postgres-secret"
These explicit annotations tell Reloader exactly which deployments to restart when the specified ConfigMap or Secret changes.
Step 6: Deploying the Client Application
Let's deploy a simple client that connects to PostgreSQL:
The client will continuously attempt to connect to PostgreSQL, making it easy to see when configuration changes affect connectivity.
Demonstration: Updating Configuration
Let's see Reloader in action by updating the ConfigMap:
Watch the pods to see automatic restarting:
You should see the PostgreSQL pod terminate and a new pod start with the updated configuration.
Next, let's update a Secret:
Again, watch the pods to see the PostgreSQL pod restart automatically:
You can verify the client connections by checking its logs:
How It Works
Stakater Reloader works through a simple mechanism:
It continuously watches resources annotated with
reloader.stakater.com/auto: "true"
When changes are detected in these resources, it finds all deployments, statefulsets, and daemonsets that use them
It then triggers a rollout of these workloads by updating an annotation in their pod template
This causes Kubernetes to create new pods with the updated configuration
You can also explicitly tell Reloader which deployments to update when a specific ConfigMap or Secret changes using annotations like:
configmap.reloader.stakater.com/reload: "name-of-configmap"
secret.reloader.stakater.com/reload: "name-of-secret"
Benefits of Using Reloader
Automation: No need to manually restart deployments after config changes
Simplicity: Minimal setup required (just add annotations)
Flexibility: Works with any type of Kubernetes deployment
Increased Productivity: Configuration changes take effect immediately
No Downtime: Rolling updates ensure continuous service
Cleanup
When you're done with the demo, clean up the resources:
Conclusion
Stakater Reloader solves a common pain point in Kubernetes: the need to manually restart pods when configurations change. By automating this process, it simplifies operations and ensures your applications always use the most up-to-date configurations.
This approach is especially valuable in environments with frequent configuration changes or where configuration is managed through GitOps pipelines.
Try integrating Reloader into your Kubernetes workflows and see how it can simplify your configuration management!
Kubernetes Training
If you find these guides helpful, check out our Kubernetes Training course