File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -8,12 +8,12 @@ building up to something pretty full-featured.
8
8
9
9
Let's pretend (and sure, this is a teensy bit contrived) that we've
10
10
finally gotten tired of the maintenance burden of the non-Kubebuilder
11
- implementation of the CronJob controller in Kuberntes , and we'd like to
11
+ implementation of the CronJob controller in Kubernetes , and we'd like to
12
12
rewrite it using KubeBuilder.
13
13
14
14
The job (no pun intended) of the * CronJob* controller is to run one-off
15
15
tasks on the Kubernetes cluster at regular intervals. It does the by
16
- bulding on top of the * Job* controller, whose task is to run one-off tasks
16
+ building on top of the * Job* controller, whose task is to run one-off tasks
17
17
once, seeing them to completion.
18
18
19
19
Instead of trying to tackle rewriting the Job controller as well, we'll
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ kubebuilder create api --group webapp --version v1 --kind Guestbook
60
60
The will create the files ` api/v1/guestbook_types.go ` and
61
61
` controller/guestbook_controller.go ` for you to edit.
62
62
63
- ** Optional:** Edit the API definition or the reconcilation business logic.
63
+ ** Optional:** Edit the API definition or the reconciliation business logic.
64
64
For more on this see [ What is
65
65
a Controller] ( TODO.md ) and [ What is
66
66
a Resource] ( TODO.md )
@@ -110,7 +110,7 @@ Deploy the controller to the cluster:
110
110
make deploy
111
111
```
112
112
113
- If you encouter RBAC errors, you may need to grant yourself cluster-admin
113
+ If you encounter RBAC errors, you may need to grant yourself cluster-admin
114
114
privileges:
115
115
116
116
<!-- TODO(directxman12): fill this in -->
You can’t perform that action at this time.
0 commit comments