Skip to content

Commit e5beddf

Browse files
authored
Merge pull request #110 from pmorie/clarify-versions
Clarify notion of 'version' in README
2 parents 07508ce + 00c3d7f commit e5beddf

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,17 @@ to simplify building and publishing Kubernetes APIs from scratch.
2727

2828
## TL;DR
2929

30-
**First:** Download the latest `kubebuilder_<version>_<operating-system>_amd64.tar.gz` release. Extracting the archive will give `kubebuilder_<version>_<os>_amd64` directory. Move the extracted directory to /usr/local/kubebuilder and update your PATH to include /usr/local/kubebuilder/bin. Given below are the steps:
30+
**First:** Download the latest
31+
`kubebuilder_<version>_<operating-system>_amd64.tar.gz` release, where `version`
32+
is the kubebuilder version. Extracting the archive will give
33+
`kubebuilder_<version>_<os>_amd64` directory. Move the extracted directory to
34+
/usr/local/kubebuilder and update your PATH to include
35+
/usr/local/kubebuilder/bin. Given below are the steps:
3136

3237
```shell
3338

3439
# download the release
35-
wget /path/to/kubebuilder_<version>_<operating-system>_amd64.tar.gz
40+
wget https://github.com/kubernetes-sigs/kubebuilder/releases/download/<version>/kubebuilder_<version>_<operating-system>_amd64.tar.gz
3641

3742
# extract the archive
3843
tar -zxvf kubebuilder_<version>_<operating-system>_amd64.tar.gz

0 commit comments

Comments
 (0)