operator pattern?: A specialized controller used to manage a custom resource. It lets you extend the cluster's behavior w/o modifying k8s code by linking controllers to one or more custom resources.
- publishing a Service to applications that don't support Kubernetes APIs to discover them
How it works?
Custom Resourceis running.Controllerqueries thecontrol planeto find out whatCustom Resourceis configured.An
Operatortells the API server, how to align the current state with the desired state.
Terms
Control loopCustom resource-
Control plane: Formerly called Master Node
Top comments (0)