You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was trying this on a M1 macbookpro and running into the following error when creating the gateway:
π 17:23:05 β skupper gateway init --config simple-podman.yaml --type podman
Error: Failed to start gateway as container: WARNING: image platform (linux/amd64) does not match the expected platform (linux/arm64)
Error: statfs /Users/jdudash/.local/share/skupper/cluster/jdudash-mac-jdudash: no such file or directory
The instructions in this demo repo seem to imply it should work because there are instructions to deploy the database using arm docker run --name database --detach --rm -p 5432:5432 quay.io/redhatintegration/patient-portal-database-arm64
Am I messing something up or missing something?
Thanks.
The text was updated successfully, but these errors were encountered:
The 'statfs' issue appears to be caused by podman not correctly mounting the filesystems into the podman machine[1], which you should be able to resolve by running podman machine stop && podman machine start.
However, you will encounter another issue with lsetxattr because Mac does not support it[2] and podman does not automatically remove it from the call as Docker does.
I was trying this on a M1 macbookpro and running into the following error when creating the gateway:
AFAICT skupper doesn't currently provide arm64 container images. See here:
skupperproject/skupper#884
The instructions in this demo repo seem to imply it should work because there are instructions to deploy the database using arm
docker run --name database --detach --rm -p 5432:5432 quay.io/redhatintegration/patient-portal-database-arm64
Am I messing something up or missing something?
Thanks.
The text was updated successfully, but these errors were encountered: