Slide 11
Slide 11 text
Operator-SDK Reconcile Example
func (r *MemcachedReconciler) Reconcile(ctx context.Context, req
ctrl.Request) (ctrl.Result, error) {
_ = context.Background()
...
// Lookup the Memcached instance for this reconcile request
memcached := &cachev1alpha1.Memcached{}
err := r.Get(ctx, req.NamespacedName, memcached)
...
}