Reloader
Reloader copied to clipboard
A Kubernetes controller to watch changes in ConfigMap and Secrets and do rolling upgrades on Pods with their associated Deployment, StatefulSet, DaemonSet and DeploymentConfig – [✩Star] if you're usin...
Currently I believe Reloader only supports the exclusion of namespaces, using the `--namespaces-to-ignore` flag. Some users (hello! 🙂) may find it easier / more appropriate to specify inclusion rather than...
Fixes https://github.com/stakater/Reloader/issues/255. This change will push the docker image to ghcr instead of docker hub to avoid rate limits, using the username of the user that initiated the workflow run...
**Description** Running container scan on NMI container (stakater/reloader:v0.0.100) reveals few vulnerabilities that have not been fixed. This is problematic since, we deploy on Azure GovCloud cluster which needs to be...
Alert a webhook supporting service ( e.g, slack ) whenever reloader reloads workload on change
I have made below changes in my configMap and deployment.yaml file respectively to restart pod whenever configmap gets updated. But my pod is not getting restarted when i update my...
It would be great to pause the reloading logic for a selected workloads, for example: 1. add `reloader.stakater.com/pause: "true"` to `Namespace` to stop reloading the whole namespace 2. ~~add `reloader.stakater.com/pause:...
We have some secrets and that secret will automatically update by another our apps. So we are looking to run a k8s job when the secret got updated.
Sometimes there is just one or two resources (cm/secrets) that require to be ignored, so annotating all of them to match can be harder than just marking the ones to...
Reloader as of today from what I understand doesn't report which deployment/statefulset/daemonset has been reloaded by it and what event ( secret/configmap ) triggered it. Also it will be really...
I have a pod created as follows which does not get restarted when the secret `k8s-ext-secret` changes. ``` --- apiVersion: v1 kind: Pod metadata: name: busybox annotations: secret.reloader.stakater.com/reload: "k8s-ext-secret" spec:...