Skip to content

Commit

Permalink
Address PR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
pwittrock committed May 14, 2018
1 parent a48f937 commit 62a532e
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 0 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ Kubebuilder is a framework for building Kubernetes APIs using [custom resource d
**Note:** kubebuilder does not exist as an example to *copy-paste*, but instead provides powerful libraries and tools
to simplify building and publishing Kubernetes APIs from scratch.

#### Project Quick Start

![Quick Start](docs/gif/quickstart.gif)


## Motivation

Expand Down
6 changes: 6 additions & 0 deletions docs/book/basics/simple_controller.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ ContainerSetController has 3 annotations:
This will ensure the Kubernetes ServiceAccount running the controller can read / write to the Deployment API
- `// +kubebuilder:informers` starts the informer for listening to Deployment events

{% panel style="warning", title="Updating Annotations" %}
It is necessary to update the `informers` and `rbac` annotations after adding watches or
CRUD operations to your controller. After updating the annotations, `kubebuilder generate`
must be run to update generated code.
{% endpanel %}

ContainerSetController has 2 variables:

- `InjectArgs` contains the clients provided to *ProvideController*
Expand Down
Binary file added docs/gif/implementapi.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/gif/quickstart.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 62a532e

Please sign in to comment.