-
Notifications
You must be signed in to change notification settings - Fork 335
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
Using TMPDIR instead of current users home. #31
Comments
TMPDIR might be deleted, PID files shouldn't get lost. In the case of long-running processes, you don't want to end up seeing you cannot access to a problematic server because the PID file is gone. We just merged a PR that allows you to use gops against an address, does that work for you better? Maybe we should just silently ignore when we cannot write a PID file and expect user to target the address when they are using the command line tool. |
I'm having a quick play adding gops to RancherOS, and so some of the go processes are in namespaced filesystems. I think at the moment, |
it is still an issue if one tries to run inside k8s container with read only root file system. opinion? |
@xaurx just got the same issue, k8s environment and read-only filesystem. Maybe give an option to not write to |
It may be a better idea to use TMPDIR instead of current user's home directory for writing gops port files. The homedir may not be writable, while TMPDIR is. It also allows us to run gops binary with a different user than the app embedding the gops agent.
The text was updated successfully, but these errors were encountered: