Best practices for building Kubernetes Operators and stateful apps | Google Cloud Blog - 0 views
-
use the StatefulSet workload controller to maintain identity for each of the pods, and to use Persistent Volumes to persist data so it can survive a service restart.
-
a way to extend Kubernetes functionality with application specific logic using custom resources and custom controllers.
-
An Operator can automate various features of an application, but it should be specific to a single application
- ...12 more annotations...