Skip to content

Commit 98b9835

Browse files
author
Phillip Wittrock
authored
Merge pull request #87 from droot/fix-readme
Update installation instructions in README
2 parents 7c4b96a + 40d28f1 commit 98b9835

File tree

1 file changed

+18
-3
lines changed

1 file changed

+18
-3
lines changed

README.md

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ Release:
1212

1313
Latest:
1414

15-
- [darwin master HEAD](https://storage.googleapis.com/kubebuilder-release/kubebuilder--darwin-amd64.tar.gz)
16-
- [linux master HEAD](https://storage.googleapis.com/kubebuilder-release/kubebuilder--linux-amd64.tar.gz)
15+
- [darwin master HEAD](https://storage.googleapis.com/kubebuilder-release/kubebuilder_master_darwin_amd64.tar.gz)
16+
- [linux master HEAD](https://storage.googleapis.com/kubebuilder-release/kubebuilder_master_linux_amd64.tar.gz)
1717

1818

1919
## `kubebuilder`
@@ -25,7 +25,22 @@ to simplify building and publishing Kubernetes APIs from scratch.
2525

2626
## TL;DR
2727

28-
**First:** Download the latest `kubebuilder-release-<version>-<operating-system>-amd64.tar.gz` release. Extract it into /usr/local/ and update your PATH to include /usr/local/kubebuilder/bin.
28+
**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:
29+
30+
```shell
31+
32+
# download the release
33+
wget /path/to/kubebuilder_<version>_<operating-system>_amd64.tar.gz
34+
35+
# extract the archive
36+
tar -zxvf kubebuilder_<version>_<operating-system>_amd64.tar.gz
37+
38+
sudo mv kubebuilder_<version>_<operating-system>_amd64 /usr/local/kubebuilder
39+
40+
#update your PATH to include /usr/local/kubebuilder/bin
41+
export PATH=$PATH:/usr/local/kubebuilder/bin
42+
43+
```
2944

3045
Create an _empty_ project under a new GOPATH.
3146

0 commit comments

Comments
 (0)