Skip to content

Commit a711e7c

Browse files
committed
extraConfigDpu: fix typo
Signed-off-by: Salvatore Daniele <[email protected]>
1 parent 9d6318a commit a711e7c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

extraConfigDpu.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -173,11 +173,11 @@ def ExtraConfigDpu(cc: ClustersConfig, cfg: ExtraConfigArgs, futures: dict[str,
173173
# We need to manually start the p4 sdk container currently for the IPU plugin
174174
p4_img = "wsfd-advnetlab239.anl.eng.bos2.dc.redhat.com:5000/intel-ipu-p4-sdk:10-9-2024"
175175
lh.run_or_die(f"podman pull --tls-verify=false {p4_img}")
176-
lh.run_or_die(f"podman tag {p4_img} {imgReg.url}/intel-ipu-p4-sdk:10-9-2024")
177-
lh.run_or_die(f"podman push {imgReg.url}/intel-ipu-p4-sdk:10-9-2024")
176+
lh.run_or_die(f"podman tag {p4_img} {imgReg.url()}/intel-ipu-p4-sdk:10-9-2024")
177+
lh.run_or_die(f"podman push {imgReg.url()}/intel-ipu-p4-sdk:10-9-2024")
178178
uname = acc.run("uname -r").out.strip()
179179
logger.info("Manually starting P4 container")
180-
cmd = f"podman run --network host -d --privileged --entrypoint='[\"/bin/sh\", \"-c\", \"sleep 5; sh /entrypoint.sh\"]' -v /lib/modules/{uname}:/lib/modules/{uname} -v data1:/opt/p4 {imgReg.url}/intel-ipu-p4-sdk:10-9-2024"
180+
cmd = f"podman run --network host -d --privileged --entrypoint='[\"/bin/sh\", \"-c\", \"sleep 5; sh /entrypoint.sh\"]' -v /lib/modules/{uname}:/lib/modules/{uname} -v data1:/opt/p4 {imgReg.url()}/intel-ipu-p4-sdk:10-9-2024"
181181
acc.run_or_die(cmd)
182182
# Build on the ACC since an aarch based server is needed for the build
183183
# (the Dockerfile needs to be fixed to allow layered multi-arch build

0 commit comments

Comments
 (0)