Skip to content

Commit cbd2925

Browse files
authored
Update gvks.md
1 parent ed70df6 commit cbd2925

File tree

1 file changed

+4
-4
lines changed
  • docs/book/src/cronjob-tutorial

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Groups and Versions and Kinds, oh my!
22

3-
Actually, before we get started with our API, we should talk terminology
3+
Before we get started with our API, we should talk about terminology
44
a bit.
55

66
When we talk about APIs in Kubernetes, we often use 4 terms: *groups*,
@@ -38,7 +38,7 @@ lowercase form of the Kind.
3838

3939
## So, how does that correspond to Go?
4040

41-
When we refer to a kind in a particular group-version, we'll call it
41+
When we refer to a kind in a particular group version, we'll call it
4242
a *GroupVersionKind*, or GVK for short. Same with resources and GVR. As
4343
we'll see shortly, each GVK corresponds to a given root Go type in
4444
a package.
@@ -51,7 +51,7 @@ API!
5151
In the next section, [Adding a new API](../cronjob-tutorial/new-api.html), we will check how the tool helps us to
5252
create our own APIs with the command `kubebuilder create api`.
5353

54-
The goal of this command is to create Custom Resource (CR) and Custom Resource Definition (CRD) for our Kind(s). To check it further see; [Extend the Kubernetes API with CustomResourceDefinitions][kubernetes-extend-api].
54+
The goal of this command is to create a Custom Resource (CR) and Custom Resource Definition (CRD) for our Kind(s). To check it further see; [Extend the Kubernetes API with CustomResourceDefinitions][kubernetes-extend-api].
5555

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

@@ -87,7 +87,7 @@ API server that says
8787
}
8888
```
8989

90-
or properly look up the group-version when we go to submit a `&CronJob{}`
90+
or properly look up the group version when we go to submit a `&CronJob{}`
9191
in an update.
9292

9393
[kubernetes-extend-api]: https://kubernetes.io/docs/tasks/extend-kubernetes/custom-resources/custom-resource-definitions/

0 commit comments

Comments
 (0)