Skip to content

Commit a894879

Browse files
authored
Merge pull request #779 from ljdelight/fixtypos
Update kubebuilder book for typos and repaired links
2 parents 8270cb0 + 4954cc6 commit a894879

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

docs/book/src/cronjob-tutorial.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Too many tutorials start out with some really contrived setup, or some toy
44
application that gets the basics across, and then stalls out on the more
5-
complicated suff. Instead, this tutorial should take you through (almost)
5+
complicated stuff. Instead, this tutorial should take you through (almost)
66
the full gamut of complexity with Kubebuilder, starting off simple and
77
building up to something pretty full-featured.
88

@@ -32,5 +32,5 @@ project:
3232
kubebuilder init --domain tutorial.kubebuilder.io
3333
```
3434

35-
Now that we've got've a project in place, let's take a look at what
35+
Now that we've got a project in place, let's take a look at what
3636
Kubebuilder has scaffolded for us so far...

docs/book/src/cronjob-tutorial/basic-project.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ basic pieces of boilerplate.
55

66
## Build Infrastructure
77

8-
First up, basic infrastructure for building you project:
8+
First up, basic infrastructure for building your project:
99

1010
<details><summary>`go.mod`: A new Go module matching our project, with basic dependencies</summary>
1111

@@ -28,24 +28,24 @@ First up, basic infrastructure for building you project:
2828

2929
## Launch Configuration
3030

31-
We also get launch configuration under the
32-
[`config/`](https://sigs.k8s.io/kubebuilder.io/docs/book/cronjob-tutorial/testdata/project/config)
31+
We also get launch configurations under the
32+
[`config/`](testdata/project/config)
3333
directory. Right now, it just contains
3434
[Kustomize](https://sigs.k8s.io/kustomize) YAML definitions required to
3535
launch our controller on a cluster, but once we get started writing our
3636
controller, it'll also hold our CustomResourceDefinitions, RBAC
3737
configuration, and WebhookConfigurations.
3838

39-
[`config/default`](../TODO.md) contains a [Kustomize base](../TODO.md) for launching
39+
[`config/default`](testdata/project/config/default) contains a [Kustomize base](../TODO.md) for launching
4040
the controller in a standard configuration.
4141

4242
Each other directory contains a different piece of configuration,
4343
refactored out into its own base:
4444

45-
- [`config/manager`](../TODO.md): launch your controllers as pods in the
45+
- [`config/manager`](testdata/project/config/manager): launch your controllers as pods in the
4646
cluster
4747

48-
- [`config/rbac`](../TODO.md): permissions required to run your
48+
- [`config/rbac`](testdata/project/config/rbac): permissions required to run your
4949
controllers under their own service account
5050

5151
## The Entrypoint

0 commit comments

Comments
 (0)