Skip to content

Commit 8030432

Browse files
committed
examples readme: reference kubebuilder book for installation and deploy
Signed-off-by: hasheddan <[email protected]>
1 parent 3fe51b2 commit 8030432

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

examples/README.md

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

33
These two examples represent the usage of `controller-runtime` libraries for built-in Kubernetes resources as well as custom resources.
44

5-
## builtins/
5+
### builtins/
66

77
This example implements a custom controller and webhooks for the *existing* ReplicaSet resource.
88

@@ -15,7 +15,7 @@ This example implements a custom controller and webhooks for the *existing* Repl
1515
3. Registers the mutating and validating webhooks with the manager
1616
4. Starts the manager
1717

18-
## crd/
18+
### crd/
1919

2020
This example implements a *new* Kubernetes resource, ChaosPod, and creates a custom controller that watches it and webhooks that mutate and validate.
2121

@@ -29,4 +29,8 @@ This example implements a *new* Kubernetes resource, ChaosPod, and creates a cus
2929
3. Implements a reconciler to execute the desired behavior of the ChaosPod API
3030
4. Creates a new controller that watches ChaosPods and reconciles the objects with the implemented reconciler
3131
5. Adds ChaosPod webhooks to manager
32-
6. Starts the manager
32+
6. Starts the manager
33+
34+
## Deploying and Running
35+
36+
To install and run the provided examples, see the Kubebuilder [Quick Start](https://book.kubebuilder.io/quick-start.html).

0 commit comments

Comments
 (0)