I understand you're looking for information about "reloader by r1n" on GitHub. However, I don't have specific knowledge about this particular tool.
Here's what I can tell you:
If this is a legitimate tool:
Important security notes:
Alternatives: If you're looking for legitimate software reloading/automation tools, consider: reloader by r1n github free
Can you clarify what you're trying to accomplish? I'm happy to suggest legitimate alternatives or point you to official documentation for whatever task you have in mind.
apiVersion: v1
kind: ConfigMap
metadata:
name: app-config
data:
app.properties: |
color=blue
mode=production
apiVersion: apps/v1
kind: Deployment
metadata:
name: my-app
annotations:
reloader.stakater.com/match: "true"
spec:
template:
metadata:
annotations:
# This tells Reloader to watch the ConfigMap named 'app-config'
reloader.stakater.com/configmap: "app-config"
spec:
containers:
- name: app
image: nginx
volumeMounts:
- name: config
mountPath: /etc/config
volumes:
- name: config
configMap:
name: app-config
Now, whenever app-config changes, Reloader will perform a rolling update of my-app. I understand you're looking for information about "reloader
Before deploying to production, test your config:
reloader --dry-run --config reloader.yml
# Install Reloader for free
helm repo add stakater https://stakater.github.io/stakater-charts
helm install reloader stakater/reloader -n reloader --create-namespace