Skip to content

Commit

Permalink
Update docs/book/src/reference/good-practices.md
Browse files Browse the repository at this point in the history
Co-authored-by: Camila Macedo <7708031+camilamacedo86@users.noreply.github.com>
  • Loading branch information
Sajiyah-Salat and camilamacedo86 committed May 16, 2023
1 parent 9d7d42c commit 317109b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/book/src/reference/good-practices.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ By developing Operator pattern solutions, we extend the Kubernetes api. Understa

Avoid a design solution where the same controller reconciles more than one Kind. Having many Kinds (such as CRDs), that are all managed by the same controller, usually goes against the design proposed by controller-runtime. Furthermore, this might hurt concepts such as encapsulation, the Single Responsibility Principle, and Cohesion. Damaging these concepts may cause unexpected side effects and increase the difficulty of extending, reusing, or maintaining the operator.

## How to use Status Conditionals
## Why You Should Adopt Status Conditions

We recommends you to manage your solutions using Status Conditionals. You can check the scaffold provided via the [deploy-image][deploy-image] as an example for its implementation.

Expand Down

0 comments on commit 317109b

Please sign in to comment.