-
Notifications
You must be signed in to change notification settings - Fork 130
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add reload and/or restart functionality to Chains #1093
Comments
I see config watches being setup for both the taskrun and the pipelinerun controllers. Maybe this is not working as expected? |
@lcarva not sure - anyway the driving use case for us is the first one (secret rotation) - do you think restart and/or reload can help users nonetheless? |
Not sure. If the secret is mounted as a volume on the pod, then it's up to kubernetes to update the contents of the file. (If the volume mount uses subPath, no updates are received.) There could be delays in propagating the updates for projected volumes. This seems to be a known kubernetes issue. It's outside the scope of the controller. IIUC, Chains does read the file from the filesystem every time it needs it. So any changes seen by the controller should be picked up automatically. |
wdyt about the first use case (the more pressing one):
this has manifested for 2 users - the ask is to be able to restart chains when
|
I think my previous comment also applies here. If the environment variable is populated from a Secret, then it's outside the scope of the controller to force a refresh of the changes. We would need an approach where the controller is explicitly told which Secret to get the value from. Then it could, possibly, watch the Secret for changes. Maybe a naive question, but why is killing the Pod not an option? This is probably a better approach as it provides a very specific point in time where a new token is guaranteed to be used. |
Feature request
in case of a config change or a change in external factors, users wish to be able to tell chains to reload the configuration OR restart the pod to read latest changes
Use case
our users have reported 2 use cases for this:
MONGO_SERVER_URL
has the creds to connect to mongo db which are rotated at a given cadence; when these creds are rotated, they wish to restart chains by hitting an endpoint (say/restart
) so the pod restarts and the new creds are picked upchains-config
configmap orsigning-secrets
secret does not result in configuration being picked up immediately by the chains controller pod - this is also evident in the getting start tutorial that saysThen restart the controller to ensure it picks up the changes:
- hitting a/reload
(instead of/restart
) will help such casesThe text was updated successfully, but these errors were encountered: