Skip to content

Commit 03e6ec5

Browse files
authored
Merge pull request #2544 from mariuskimmina/master
📖 docs: add small improvements to docs
2 parents b344f5b + edab79d commit 03e6ec5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/book/src/cronjob-tutorial/gvks.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ The goal of this command is to create Custom Resource (CR) and Custom Resource D
5454

5555
## But, why create APIs at all?
5656

57-
New APIs are how we teach Kubernetes about our custom objects. The Go structs are used to generate a Custom Resource Definition (CRD) which includes the schema for our data as well as tracking data like what our new type is called. We can then create instances of our custom objects which will be managed by our [controllers][controllers].
57+
New APIs are how we teach Kubernetes about our custom objects. The Go structs are used to generate a CRD which includes the schema for our data as well as tracking data like what our new type is called. We can then create instances of our custom objects which will be managed by our [controllers][controllers].
5858

5959
Our APIs and resources represent our solutions on the clusters. Basically, the CRDs are a definition of our customized Objects, and the CRs are an instance of it.
6060

@@ -70,7 +70,7 @@ The `Scheme` we saw before is simply a way to keep track of what Go type
7070
corresponds to a given GVK (don't be overwhelmed by its
7171
[godocs](https://pkg.go.dev/k8s.io/apimachinery/pkg/runtime?tab=doc#Scheme)).
7272

73-
For instance, suppose we mark that the
73+
For instance, suppose we mark the
7474
`"tutorial.kubebuilder.io/api/v1".CronJob{}` type as being in the
7575
`batch.tutorial.kubebuilder.io/v1` API group (implicitly saying it has the
7676
Kind `CronJob`).

docs/book/src/quick-start.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ make uninstall
222222

223223
## Undeploy controller
224224

225-
UnDeploy the controller to the cluster:
225+
Undeploy the controller to the cluster:
226226

227227
```bash
228228
make undeploy

0 commit comments

Comments
 (0)