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
When running uds run the bundle creates and deploys successfully
Actual Result
Bundle create works but on deploy we get this error:
ERROR: Failed to validate bundle: arch arm64 does not match cluster arch, [amd64]
ERROR: Failed to run action: command "set -x; ./uds deploy $(ls -tr uds-bundle*.tar.zst | tail ..." timed
out after 0 seconds
It appears that UDS CLI is checking the user's system arch against the cluster arch
Additional Context
The workaround is to simply add -a amd64 to the uds deploy command, but this behavior is still bad. During deploy we should check the bundle's arch against the cluster's arch
The text was updated successfully, but these errors were encountered:
Environment
Steps to reproduce
Assume my cluster arch is amd64 and I'm deploying from my arm64 Mac. Consider the following:
Expected result
When running
uds run
the bundle creates and deploys successfullyActual Result
Bundle create works but on deploy we get this error:
It appears that UDS CLI is checking the user's system arch against the cluster arch
Additional Context
The workaround is to simply add
-a amd64
to theuds deploy
command, but this behavior is still bad. During deploy we should check the bundle's arch against the cluster's archThe text was updated successfully, but these errors were encountered: