sitzma opened a new issue, #357:
URL: https://github.com/apache/superset-kubernetes-operator/issues/357

   **What happened?**
   The superset instance to be created
   
   **Environment**
   - Operator version: 0.2.0
   - Kubernetes version: Openshift 4.20 / Kubernetes 1.33
   - Install method: helm
   
   **Reproduction**
   create a superset instance
   
   
   ```
   logs: {"level":"error","ts":"2026-09-10T14:36:45Z","msg":"Reconciler 
error","controller":"superset","controllerGroup":"superset.apache.org","controllerKind":"Superset","Superset":{"name":"superset","namespace":"***"},"namespace":"***","name":"superset","reconcileID":"69d637b5-3126-441f-9fd3-5da8e03552ce","error":"reconciling
 ServiceAccount: serviceaccounts \"superset\" is forbidden: cannot set 
blockOwnerDeletion if an ownerReference refers to a resource you can't set 
finalizers on: , 
<nil>","stacktrace":"sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller[...]).reconcileHandler\n\t/go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:494\nsigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller[...]).processNextWorkItem\n\t/go/pkg/mod/sigs.k8s.io/[email protected]/pkg/internal/controller/controller.go:437\nsigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller[...]).Start.func1.1\n\t/go/pkg/mod/sig
 s.k8s.io/[email protected]/pkg/internal/controller/controller.go:312"}
   ```
   
   It's missing a permission for finalizers
   
   I managed to solve it with adding this rule:
   
   ```
   rules:
     - verbs:
         - update
         - patch
       apiGroups:
         - superset.apache.org
       resources:
         - '*/finalizers'
   ```
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to