postgres-operator icon indicating copy to clipboard operation
postgres-operator copied to clipboard

When using finalizers, delete protection via annotation is ignored

Open mortenlj opened this issue 6 months ago • 0 comments

  • Which image of the operator are you using? e.g. ghcr.io/zalando/postgres-operator:v1.13.0 ghcr.io/zalando/postgres-operator:v1.14.0
  • Where do you run it - cloud or metal? Kubernetes or OpenShift? [AWS K8s | GCP ... | Bare Metal K8s] GCP
  • Are you running Postgres Operator in production? [yes | no] Not yet
  • Type of issue? [Bug report, question, feature request, etc.] Bug report

When using finalizers, the operator deletes all resources before the EventDelete event is received. The delete protection check occurs when the EventDelete event is added to the queue, but by then all the resources have been deleted.

When the operator notices the DeleteTimestamp is set here, it proceeds to delete the cluster right away. It might be better at that point to simply queue an EventDelete event to handle the deletion the normal way (assuming I've understood the internal event system correctly).

mortenlj avatar May 21 '25 12:05 mortenlj