File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -9,9 +9,6 @@ This Quick Start guide will cover:
9
9
10
10
## Installation
11
11
12
- Install [ kustomize] ( https://sigs.k8s.io/kustomize ) .
13
-
14
-
15
12
Install [ kubebuilder] ( https://sigs.k8s.io/kubebuilder ) :
16
13
17
14
``` bash
@@ -27,6 +24,16 @@ sudo mv /tmp/kubebuilder/kubebuilder_2.0.0_${os}_${arch} /user/local/kubebuilder
27
24
export PATH=$PATH :/usr/local/kubebuilder/bin
28
25
```
29
26
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
+
30
37
## Create a Project
31
38
32
39
Initialize a new project and Go module for your controllers:
You can’t perform that action at this time.
0 commit comments