-
-
Notifications
You must be signed in to change notification settings - Fork 121
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Install stubs for tools missing arm64 support #841
Conversation
@@ -0,0 +1,4 @@ | |||
#!/bin/bash | |||
|
|||
printf "$(tput setaf 1)%s is not supported on this platform (arm64)$(tput setaf 0)\n" "$(basename "$0")" >&2 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice.
# These are packages that are only supported on amd64, | ||
# typically because they have not been updated since 2021. | ||
awless@cloudposse | ||
cfssl@cloudposse | ||
emailcli@cloudposse | ||
goofys@cloudposse | ||
rakkess@cloudposse | ||
tfenv@cloudposse | ||
tfmask@cloudposse |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I do believe we should deprecate 💯 of these from our base image. We can do that in a follow on PR. None of these are critical to have in the base image, and it's easy enough for users to mitigate it in their downstream images. Since 2.x has many breaking changes, this would be the time, no?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@osterman The difficult one to remove is goofys
, because we have commands s3
and s3fs
(that work together to mount an S3 bucket as if it were a local disk) that depend on it. That was my motivation to restore these commands and add stubs. Do we want to remove s3
and s3fs
as well?
what
arm64
support:amd4
versions of Geodesicwhy
arm64
support from both versions. However, those tools are used by scripts and commands we continue to include, and we do not know how important those are to the Geodesic community. This way, they will continue to work as before foramd64
versions and will generate meaningful error messages (instead of generic "command not found" errors) in thearm64
version.