-
Notifications
You must be signed in to change notification settings - Fork 243
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
cleanup for remote-run resources #4024
Conversation
9da4711
to
a3d31a5
Compare
for entity in list_func(kube_client, namespace): | ||
if ( | ||
not entity.metadata.name.startswith("remote-run-") | ||
or entity.metadata.creation_timestamp > age_limit |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
imo, we probably want to tag the resources with when they should be expired by - otherwise, we have to essentially always run this with --max-age $REMOTE_RUN_JOB_MAX_DURATION
lest we delete an in-use SA/role/rolebinding
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We actually want to always delete these quickly. They should just exist for the user to be able to exec into the pod, once the shell session is established they can get removed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i guess there's not really an easy way for folks to exec back into the remote-run sandbox if their connection drops for whatever reason, so it does seem fine for this to happen :p
Clean up logic for the (meant to be) ephemeral resources which are created in remote-run invocations (#4022).
This was meant to be included in the last release but I (luisp) don't know how to read and merged things in the "wrong" order. This correctly merges in the following PRs: * cleanup for remote-run resources (#4024) Clean up logic for the (meant to be) ephemeral resources which are created in remote-run invocations (#4022). * new remote-run cli (#4025) Last portion of #3986, with the updated logic to reflect the updated API conventions introduced in #4022.
Clean up logic for the (meant to be) ephemeral resources which are created in remote-run invocations (#4022).