Skip to content
This repository was archived by the owner on Nov 14, 2024. It is now read-only.

Commit 7cb1963

Browse files
committed
chore: update README.md with installation instructions
Fixes #29.
1 parent 4ebd64c commit 7cb1963

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

README.md

+20
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,26 @@ permissions to run Coder.
1919
- Kubernetes Resosurces: checks that the cluster has the required
2020
resource types available to run Coder.
2121

22+
## Installation
23+
24+
You can manually download the latest [release](https://github.com/cdr/coder-doctor/releases):
25+
26+
1. Click a release and download the tar file for your operating system
27+
(ex: coder-doctor-linux-amd64.tar.gz)
28+
2. (Optional, recommended) Download the `checksums.txt` for the desired
29+
release and verify the `sha256` checksum of the file you downloaded.
30+
3. Extract the `coder-doctor` binary.
31+
4. Move the `coder-doctor` binary to somewhere in your `$PATH`.
32+
33+
Alternatively, use the below one-liner, replacing `$VERSION`, `$OSTYPE`
34+
(one of `darwin`, `linux`, `windows`) and `$ARCH` (one of `amd64`, `arm64`)
35+
as required:
36+
37+
```bash
38+
curl -fSsL "https://github.com/cdr/coder-doctor/releases/latest/download/coder-doctor_$VERSION_$OSTYPE_$ARCH.tar.gz" -o coder-doctor.tar.gz
39+
tar -xzvf coder-doctor.tar.gz
40+
```
41+
2242
## Usage
2343

2444
To check if your Kubernetes cluster is ready to install Coder, run:

0 commit comments

Comments
 (0)