Deploy a simple nifi #28
Replies: 2 comments
-
At a glance it looks like you are doing everything correct. The issue is, that NiFi doesn't listen on localhost for .. reasons. It can only be configured to either listen on localhost (and thus not accept connections from the outside) or on the kubernetes internal interface (and thus not accepting port forwards which try to access localhost). The solution is to use a Nodeport or LoadBalancer service to access NiFi. For nodeport services, the operator can automatically create these for you, see here: https://docs.stackable.tech/home/stable/concepts/service-exposition.html LoadBalancer services you currently have to create manually. We should really add this NiFi limitation to our docs though, I'll create a PR for this. |
Beta Was this translation helpful? Give feedback.
-
Thanks for your answer. I used NodePort and LoadBalancer and it worked. |
Beta Was this translation helpful? Give feedback.
-
Hallo.
I'm trying to do a simple deployment of a Nifi server but everytime I try to access it (using a port-forward to the port 8443), I have "connection reused" in my console.
This is what I've done:
Questions:
I looked here https://github.com/stackabletech/nifi-operator/blob/main/deploy/helm/nifi-operator/crds/crds.yaml, but I could find anything related to my issue,
Please advise.
Thanks
PJC
Beta Was this translation helpful? Give feedback.
All reactions