Skip to content
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

Merged
merged 3 commits into from
Jan 14, 2025
Merged

Conversation

aslilac
Copy link
Member

@aslilac aslilac commented Jan 8, 2025

Closes #13548

This allows users to...

  • Install a CLI that is known to have the same version as the server binary
  • Install the CLI in air-gapped deployments while still getting to run a simple install script

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"

@aslilac aslilac changed the title feat: bundle a local version of install.sh, add CLI install page feat: bundle a local version of install.sh Jan 13, 2025
@aslilac aslilac force-pushed the lilac/local-cli-install branch from 2f9c32c to bb5f5f2 Compare January 13, 2025 18:46
@aslilac aslilac requested a review from mafredri January 13, 2025 19:20
@aslilac aslilac marked this pull request as ready for review January 13, 2025 22:02
Copy link
Member

@mafredri mafredri left a 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!

@aslilac aslilac merged commit a450121 into main Jan 14, 2025
34 checks passed
@aslilac aslilac deleted the lilac/local-cli-install branch January 14, 2025 18:30
@github-actions github-actions bot locked and limited conversation to collaborators Jan 14, 2025
@matifali
Copy link
Member

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.

@mafredri
Copy link
Member

mafredri commented Jan 16, 2025

@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

@matifali
Copy link
Member

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)

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

support targeting server binary in install script
3 participants