If you need a specific fork:
git clone https://github.com/r1n/Reloader.git
cd Reloader
kubectl apply -k deploy/kubernetes # if kustomization.yaml exists
# OR
make deploy
Verify the image tag points to r1n’s Docker Hub or your own built image.
The primary source for the reliable, community-tested version is the Stakater GitHub repository. However, when users search for “reloader by r1n github”, they often land on forks or personal repositories where developers extend functionality (e.g., supporting additional workload types like Rollout, Blueprint, or custom CRDs). reloader by r1n github
If you’re a Go developer, you know the drill. You write some code, save the file, switch to your terminal, hit the up arrow, press enter to rebuild, and then run the binary. It’s a loop that happens dozens of times an hour.
While Go’s compile times are incredibly fast, that friction adds up. Wouldn't it be nice if your application just knew when you saved a file and restarted itself? If you need a specific fork: git clone https://github
Enter Reloader by r1n.
apiVersion: v1
kind: ConfigMap
metadata:
name: nginx-config
data:
site.conf: |
server
listen 80;
server_name example.com;
location / proxy_pass http://backend;
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: nginx
annotations:
reloader.r1n.com/configmap: "nginx-config"
spec:
replicas: 3
template:
spec:
containers:
- name: nginx
image: nginx
volumeMounts:
- name: conf
mountPath: /etc/nginx/conf.d
volumes:
- name: conf
configMap:
name: nginx-config
Edit site.conf to change server_name → Reloader triggers a rolling update. Zero config staleness. Verify the image tag points to r1n’s Docker
For production, stick to the official stakater/reloader container image unless the r1n fork provides a specific feature you cannot live without. And always pin your version – do not use latest.