We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b34b901 commit f3b797aCopy full SHA for f3b797a
1 file changed
plugins/module_utils/system.py
@@ -62,8 +62,9 @@ def env(platform: str, engine: str = "podman") -> dict:
62
container_env = {
63
"SKUPPER_OUTPUT_PATH": data_home(),
64
"SKUPPER_PLATFORM": platform,
65
- "SKUPPER_ROUTER_IMAGE": os.environ.get("SKUPPER_ROUTER_IMAGE"),
66
}
+ if os.environ.get("SKUPPER_ROUTER_IMAGE"):
67
+ container_env["SKUPPER_ROUTER_IMAGE"] = os.environ.get("SKUPPER_ROUTER_IMAGE")
68
endpoint = container_endpoint(engine)
69
if platform != "linux":
70
if is_sock_endpoint(endpoint):
0 commit comments