-
Notifications
You must be signed in to change notification settings - Fork 833
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
feat: bundle a local version of install.sh #16064
Conversation
2f9c32c
to
bb5f5f2
Compare
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.
This is great, nice work!
Another thing, while testing, I noticed this to be very slow compared to the install script we host on GitHub. It is probably a network-related thing, and our coder server may not have the same bandwidth as the GitHub CDNs. |
@matifali it's (in part) because the command doesn't request compression. We could attempt a compressed transfer, but unfortunately that doesn't support a progress bar. uncompressed (current) / # time curl -fL -o ~/.cache/coder/local_downloads/coder-linux-arm64-v2.18.2-devel+3a81aac31.incomplete -C - https://dev.coder.com/bin/coder-linux-arm64
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 36.2M 100 36.2M 0 0 3983k 0 0:00:09 0:00:09 --:--:-- 6951k
real 0m 9.33s
user 0m 0.41s
sys 0m 0.49s vs compressed: / # time curl --compressed -fL -o ~/.cache/coder/local_downloads/coder-linux-arm64-v2.18.2-devel+3a81aac31.incomplete -C - https://dev.coder.com/bin/coder-linux-arm64
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 12.6M 0 12.6M 0 0 3074k 0 --:--:-- 0:00:04 --:--:-- 3204k
real 0m 4.21s
user 0m 0.20s
sys 0m 0.09s |
Thanks, @mafredri, for investigating. My concern is that before we decide to make this the default behavior, we should ensure this doesn't cause a degradation in experience. I am fine if we lose the progress in favor of a faster download experience. I have shared some thoughts here: #16125 (comment) |
Closes #13548
This allows users to...
You run something like...
curl -fsSL https://dev.coder.com/install.sh | sh
...and it'll download a "slim" Coder build (CLI only) from the server (which serves these under paths like /bin/coder-$os-$arch) and install it.
This script is based off of our existing install.sh script, and accepts many of the same arguments, but has been tailored to this narrower use case.
There's also some fancy machinery to insert the correct origin to download the binary from using
"text/template"