-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
15 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,13 @@ | ||
## Kubernetes Operators | ||
In this article we are going to **learn** the concepts, then we'll **code** the implementation, then **try it out** against an actual cluster. We also take a look at Scaffold Design, Type, Behavior and launching. | ||
|
||
What's an Operator ? | ||
### First, What's an Operator ? | ||
|
||
A **Controller** is a loop that reads desired state ("spec"), observed cluser state, and external state, and reconciles the cluster state with the desired state. | ||
|
||
An **Operator** is a controller that encodes human operational knowledge. How do i run and manage s specific piece of complex software. | ||
An **Operator** is a controller that encodes human operational knowledge. How do i run and manage a specific piece of complex software. All operators are controllers; but not all controllers are operators. | ||
|
||
All operators are controllers; but not all controllers are operators. | ||
### What is KubeBuilder ? | ||
**KubeBuilder** is a set of tooling and opinions about how to structure custom controller and operators build on top of "controller-runtime" and "controller-tools" | ||
**controller-runtime** wich conntains libraries for building the controller part of your operator, and... | ||
**controller-tools** which contains tools for generating CustomResourceDefinitions, etc for you operator. |