Skip to content

Commit f6508e6

Browse files
authored
Update quickstart to 2.3.1
Update quick-start.md to Kubebuilder version 2.3.1 as 2.3.0 has a bug related to api creation.
1 parent e71bd65 commit f6508e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/book/src/quick-start.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ os=$(go env GOOS)
2424
arch=$(go env GOARCH)
2525

2626
# download kubebuilder and extract it to tmp
27-
curl -L https://go.kubebuilder.io/dl/2.3.0/${os}/${arch} | tar -xz -C /tmp/
27+
curl -L https://go.kubebuilder.io/dl/2.3.1/${os}/${arch} | tar -xz -C /tmp/
2828

2929
# move to a long-term location and put it on your path
3030
# (you'll need to set the KUBEBUILDER_ASSETS env var if you put it somewhere else)
31-
sudo mv /tmp/kubebuilder_2.3.0_${os}_${arch} /usr/local/kubebuilder
31+
sudo mv /tmp/kubebuilder_2.3.1_${os}_${arch} /usr/local/kubebuilder
3232
export PATH=$PATH:/usr/local/kubebuilder/bin
3333
```
3434

0 commit comments

Comments
 (0)