Skip to content

Commit

Permalink
Merge pull request #779 from ljdelight/fixtypos
Browse files Browse the repository at this point in the history
Update kubebuilder book for typos and repaired links
  • Loading branch information
k8s-ci-robot authored Jun 12, 2019
2 parents 8270cb0 + 4954cc6 commit a894879
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions docs/book/src/cronjob-tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

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

Expand Down Expand Up @@ -32,5 +32,5 @@ project:
kubebuilder init --domain tutorial.kubebuilder.io
```

Now that we've got've a project in place, let's take a look at what
Now that we've got a project in place, let's take a look at what
Kubebuilder has scaffolded for us so far...
12 changes: 6 additions & 6 deletions docs/book/src/cronjob-tutorial/basic-project.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ basic pieces of boilerplate.

## Build Infrastructure

First up, basic infrastructure for building you project:
First up, basic infrastructure for building your project:

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

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

## Launch Configuration

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

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

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

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

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

## The Entrypoint
Expand Down

0 comments on commit a894879

Please sign in to comment.