Hi,

Does anyone have an example they can share of managing a pod in systemd?

I'm trying to follow the guidelines outlined in
  https://www.redhat.com/sysadmin/podman-shareable-systemd-services
which work great for containers but now I'm unsure how to proceed for a pod.

Ultimately I'm trying to deploy prometheus alongside nginx as a reverse proxy, and deploying both containers inside a pod seems easiest from a networking perspective and also sensible logic since the two containers are coupled into a single, functional unit.

For the case of the pod, what PID does systemd track? Is it the pause container? If so, how does that happen? `podman pod create` doesn't seem to accept --conmon-pidfile args like `podman run` does.

I also tried using the output of `podman generate systemd` but that seems tied to a specific pod instance. Ideally I'd find something more generic like the pattern I extracted from the blog post above. 

Thanks in advance,
brian