Tell status to systemd-notify
This commit is contained in:
parent
9d0c9b94c2
commit
2834f416c0
4
main.py
4
main.py
|
@ -57,7 +57,7 @@ class PodKeeper:
|
|||
podman.play.kube(self.podyaml, *self.podnet_args)
|
||||
try:
|
||||
if 'NOTIFY_SOCKET' in os.environ:
|
||||
sdnotify("--ready")
|
||||
sdnotify("--ready", f"--pid={os.getpid()}", "--status=\"Monitoring pod...\"")
|
||||
|
||||
while not self.stopping.is_set():
|
||||
self.waiter.wait()
|
||||
|
@ -71,6 +71,8 @@ class PodKeeper:
|
|||
self.reloading.clear()
|
||||
self.reload_pod()
|
||||
|
||||
if 'NOTIFY_SOCKET' in os.environ:
|
||||
sdnotify("--status=\"Stopping pod\"")
|
||||
finally:
|
||||
self.stop_pod()
|
||||
|
||||
|
|
Loading…
Reference in a new issue