Operator SDK FAQ

Warning

These pages are under construction. Please continue to use the docs in tree for now.

Controller Runtime FAQ

Please see the upstream Controller Runtime FAQ first for any questions related to runtime mechanics or controller-runtime APIs.

How can I have separate logic for Create, Update, and Delete events? When reconciling an object can I access its previous state?

You should not have separate logic. Instead design your reconciler to be idempotent. See the controller-runtime FAQ for more details.

When my Custom Resource is deleted, I need to know its contents or perform cleanup tasks. How can I do that?

Use a finalizer.

I keep seeing the following intermittent warning in my Operator’s logs: The resourceVersion for the provided watch is too old. What’s wrong?

This is completely normal and expected behavior.

The kube-apiserver watch request handler is designed to periodically close a watch to spread out load among controller node instances. Once disconnected, your Operator’s informer will automatically reconnect and re-establish the watch. If an event is missed during re-establishment, the watch will fail with the above warning message. The Operator’s informer then does a list request and uses the new resourceVersion from that list to restablish the watch and replace the cache with the latest objects.

This warning should not be stifled. It ensures that the informer is not stuck or wedged.

Never seeing this warning may suggest that your watch or cache is not healthy. If the message is repeating every few seconds, this may signal a network connection problem or issue with etcd.

For more information on kube-apiserver request timeout options, see the Kubernetes API Server Command Line Tool Reference

I keep seeing errors like “Failed to create metrics Service”, how do I fix this?

If you run into the following error message:

  1. time="2019-06-05T12:29:54Z" level=fatal msg="failed to create or get service for metrics: services \"my-operator\" is forbidden: cannot set blockOwnerDeletion if an ownerReference refers to a resource you can't set finalizers on: , <nil>"

Add the following to your deploy/role.yaml file to grant the operator permissions to set owner references to the metrics Service resource. This is needed so that the metrics Service will get deleted as soon as you delete the operators Deployment. If you are using another way of deploying your operator, have a look at this guide for more information.

  1. - apiGroups:
  2. - apps
  3. resources:
  4. - deployments/finalizers
  5. resourceNames:
  6. - <operator-name>
  7. verbs:
  8. - "update"

My Ansible module is missing a dependency. How do I add it to the image?

Unfortunately, adding the entire dependency tree for all Ansible modules would be excessive. Fortunately, you can add it easily. Simply edit your build/Dockerfile. You’ll want to change to root for the install command, just be sure to swap back using a series of commands like the following right after the FROM line.

  1. USER 0
  2. RUN yum -y install my-dependency
  3. RUN pip3 install my-python-dependency
  4. USER 1001

If you aren’t sure what dependencies are required, start up a container using the image in the FROM line as root. That will look something like this. docker run -u 0 -it --rm --entrypoint /bin/bash quay.io/operator-framework/ansible-operator:<sdk-tag-version>

I keep seeing errors like “Failed to watch”, how do I fix this?

If you run into the following error message:

  1. E0320 15:42:17.676888 1 reflector.go:280] pkg/mod/k8s.io/client-go@v0.0.0-20191016111102-bec269661e48/tools/cache/reflector.go:96: Failed to watch *v1.ImageStreamTag: unknown (get imagestreamtags.image.openshift.io)
  2. {"level":"info","ts":1584718937.766342,"logger":"controller_memcached","msg":"ImageStreamTag resource not found.

Then, it means that your Operator is unable to watch the resource. This scenario can be faced because the Operator does not have the permission [(RBAC)rbac] to Watch the resource, or may be the Schema from the API used, did not implement this verb. In this way the solution would be to grant the permission in the role.yaml , or when it is not possible, use the client.Reader instead of the client provided.

The client provided will work with a cache, and because of this, the WATCH verb is required.

Example

Following are the changes in the conttroler.go, to address the need to get the resource via the client.Reader. See:

  1. import (
  2. ...
  3. imagev1 "github.com/openshift/api/image/v1"
  4. )
  5. ...
  6. // newReconciler returns a new reconcile.Reconciler
  7. func newReconciler(mgr manager.Manager) reconcile.Reconciler {
  8. return &ReconcileMemcached{client: mgr.GetClient(), scheme: mgr.GetScheme(), APIReader: mgr.GetAPIReader() }
  9. }
  10. ...
  11. // ReconcileMemcached reconciles a Memcached object
  12. type ReconcileMemcached struct {
  13. // TODO: Clarify the split client
  14. // This client, initialized using mgr.Client() above, is a split client
  15. // that reads objects from the cache and writes to the apiserver
  16. client client.Client
  17. scheme *runtime.Scheme
  18. APIReader client.Reader // the APIReader will not use the cache
  19. }
  20. ...
  21. func (r *ReconcileMemcached) Reconcile(request reconcile.Request) (reconcile.Result, error) {
  22. // Get the ImageStreamTag from OCP API which has not the WATCH verb.
  23. img := &imagev1.ImageStreamTag{}
  24. err = r.APIReader.Get(context.TODO(), types.NamespacedName{Name: fmt.Sprintf("%s:%s", "example-name", "example-tag"), img)
  25. if err != nil {
  26. if errors.IsNotFound(err) {
  27. reqLogger.Info("resource not found")
  28. } else {
  29. reqLogger.Error(err, "unexpected error")
  30. }
  31. }

Last modified January 1, 0001