Hello all, I'm having issues with watched namespac...
# troubleshooting
l
Hello all, I'm having issues with watched namespaces and the Flink k8s operator. The issue is that despite having three watched namespaces defined, the operator acts only on one of them. I'm using the Heml chart version
1.8.0
on Kubernetes
1.29.x .
I deployed the Flink Operator with an unique watched namespace named
flink
where the only Flink app that we had at the time is currently running. Recently, I have added 2 more namespaces as I look to deploy a second Flink application, so in the Hem chart I set:
Copy code
watchNamespaces:
  - "flink"
  - "data-lake"
  - "transformers"
I created a new app called "transformers" with FlinkDeployment on the
transfomers
namespace but the Flink Operator doesn't seem to pick it.
Copy code
NAME           JOB STATUS   LIFECYCLE STATE
transformers
Looking at the logs, I don't see any error messages, everything looks good, the only relevant line is, the confirmation on the config for watched namespaces:
Copy code
2024-09-05 10:33:10,418 o.a.f.c.GlobalConfiguration    [INFO ] Loading configuration property: kubernetes.operator.watched.namespaces, flink,data-lake,transformers
I also checked serviceaccounts and role/rolebindings and everything seems properly provisioned on the
transformers
namespace.