You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/book/src/quick-start.md
+14-6Lines changed: 14 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -41,17 +41,20 @@ Also, you can install a master snapshot from `https://go.kubebuilder.io/dl/lates
41
41
42
42
## Create a Project
43
43
44
-
Create a directory, and then run the following command inside of it to initialize a new project:
44
+
Create a directory, and then run the init command inside of it to initialize a new project. Follows an example.
45
45
46
46
```bash
47
-
kubebuilder init --domain my.domain
47
+
$ mkdir $GOPATH/src/example
48
+
$ cd$GOPATH/src/example
49
+
$ kubebuilder init --domain my.domain
48
50
```
49
51
50
52
<asideclass="note">
51
53
<h1>Not in $GOPATH</h1>
52
54
53
-
If you're not in `GOPATH`, you'll need to run `go mod init <modulename>`
54
-
in order to tell kubebuilder and Go the base import path of your module.
55
+
If you're not in `GOPATH`, you'll need to run `go mod init <modulename>` in order to tell kubebuilder and Go the base import path of your module.
56
+
57
+
For a further understanding of `GOPATH` see [The GOPATH environment variable][GOPATH-golang-docs] in the [How to Write Go Code][how-to-write-go-code-golang-docs] golang page doc.
55
58
56
59
</aside>
57
60
@@ -193,6 +196,11 @@ privileges or be logged in as admin. See [Prerequisites for using Kubernetes RBA
193
196
194
197
</aside>
195
198
196
-
Now, follow up the tutorial for you understanding better how it works and check an full example project working.
199
+
## Next Step
200
+
201
+
Now, follow up the CronJob tutorial[cronjob-tutorial] to better understand how it works by developing a demo example project.
0 commit comments