We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b31cc5d commit 03cedbbCopy full SHA for 03cedbb
docs/book/src/quick-start.md
@@ -16,11 +16,11 @@ os=$(go env GOOS)
16
arch=$(go env GOARCH)
17
18
# download kubebuilder and extract it to tmp
19
-curl -sL https://go.kubebuilder.io/dl/2.0.0-rc.0/${os}/${arch} | tar -xz -C /tmp/
+curl -sL https://go.kubebuilder.io/dl/2.0.0/${os}/${arch} | tar -xz -C /tmp/
20
21
# move to a long-term location and put it on your path
22
# (you'll need to set the KUBEBUILDER_ASSETS env var if you put it somewhere else)
23
-sudo mv /tmp/kubebuilder_2.0.0-rc.0_${os}_${arch} /usr/local/kubebuilder
+sudo mv /tmp/kubebuilder_2.0.0_${os}_${arch} /usr/local/kubebuilder
24
export PATH=$PATH:/usr/local/kubebuilder/bin
25
```
26
0 commit comments