Comment 7 for bug 1883599

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to config (master)

Reviewed: https://review.opendev.org/736761
Committed: https://git.openstack.org/cgit/starlingx/config/commit/?id=31533adf4252e76e25a3678d78559672df6d3729
Submitter: Zuul
Branch: master

commit 31533adf4252e76e25a3678d78559672df6d3729
Author: Andy Ning <email address hidden>
Date: Wed Jun 17 10:21:32 2020 -0400

    Set up /var/run/sysinv_tmp as sysinv's default temp files location

    sysinv call the k8s python client to perform a number of operations.
    The k8s python client creates temp files under /tmp and continues to
    use these tmp files for the life-cycle of the processes.

    However systemd-tmpfiles-clean.service will run every day to clean up
    files in /tmp dir that are older than 10 days. If the k8s client code
    is not triggered for more than 10 days (thus its temp files are not
    accessed for more than 10 days), these temp files will be removed as
    part of the cleanup. Certain sysinv operations then starts to fail with
    an error that the tmp file is no longer there.

    This is a known issue of kubernetes python client:
    https://github.com/kubernetes-client/python/issues/765

    The commit fixes this issue by setting TMPDIR to /var/run/sysinv_tmp
    when sm starts sysinv-conductor and sysinv-inv.

    Change-Id: I8544272b2431607ed1041473c5da2eecb64635af
    Closes-Bug: 1883599
    Signed-off-by: Andy Ning <email address hidden>