diff --git a/podman/libs/pods.py b/podman/libs/pods.py index 5fd6e5e..9f33e29 100644 --- a/podman/libs/pods.py +++ b/podman/libs/pods.py @@ -128,7 +128,10 @@ def create(self, cgroupparent=None, labels=None, share=None, - infra=False): + infra=False, + infraCommand=None, + infraImage=None, + publish=None): """Create a new empty pod.""" config = ConfigDict( name=ident, @@ -136,6 +139,9 @@ def create(self, labels=labels, share=share, infra=infra, + infraCommand=infraCommand, + infraImage=infraImage, + publish=publish ) with self._client() as podman: