Skip to content

Commit f732557

Browse files
committed
Update book with kustomize go link
This updates the book with the kustomize go link and adds a brief block on installing kustomize from that link.
1 parent 6fca9a1 commit f732557

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

docs/book/src/quick-start.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@ This Quick Start guide will cover:
99

1010
## Installation
1111

12-
Install [kustomize](https://sigs.k8s.io/kustomize).
13-
14-
1512
Install [kubebuilder](https://sigs.k8s.io/kubebuilder):
1613

1714
```bash
@@ -27,6 +24,16 @@ sudo mv /tmp/kubebuilder/kubebuilder_2.0.0_${os}_${arch} /user/local/kubebuilder
2724
export PATH=$PATH:/usr/local/kubebuilder/bin
2825
```
2926

27+
Install [kustomize](https://sigs.k8s.io/kustomize):
28+
29+
```bash
30+
os=$(go env GOOS)
31+
arch=$(go env GOARCH)
32+
33+
# download kustomize to the kubebuilder assets folder
34+
curl -o /usr/local/kubebuilder/bin/kustomize -sL https://go.kubebuilder.io/dl/latest/${os}/${arch}
35+
```
36+
3037
## Create a Project
3138

3239
Initialize a new project and Go module for your controllers:

0 commit comments

Comments
 (0)