Remove previously existing pod when replacing it

This commit is contained in:
Benedikt Ziemons 2020-12-02 11:17:33 +01:00
parent 00bcefccca
commit eeb63488b5
Signed by: ben
GPG key ID: 0F54A7ED232D3319

View file

@ -63,8 +63,9 @@ class PodKeeper:
def run(self):
os.chdir(self.podhome)
if self.stop_previous and podman.pod.exists(self.podname, _ok_code=[0, 1]).exit_code == 0:
print(f"Stopping pod {self.podname}", file=sys.stderr, flush=True)
print(f"Replacing existing pod {self.podname}", file=sys.stderr, flush=True)
podman.pod.stop(self.podname)
podman.pod.rm("-f", self.podname)
print(f"Starting pod {self.podname} at {self.last_check}", file=sys.stderr, flush=True)
podman.play.kube(self.podyaml, *self.podnet_args)