cisco-open / operator-tools

Speed up the implementation and composition of Kubernetes Operators

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Resource recreate strategy should be configurable

pepov opened this issue · comments

Is your feature request related to a problem? Please describe.
Currently we only have a single way to recreate resources which is: delete the object in foreground, then return with a requeue request to retry recreating it later.

Describe the solution you'd like to see
I would like to configure it

  • to delete the object in the background and create the new object immediately or
  • delete the object in foreground but block and wait until it gets deleted to be able to create it immediately