Hi,
i have successfully installed and configured nifi secured cluster on Kubernetes and using oidc authentication. am using Ingress to access the nifi and when i try to acess nifi am getting the keycloak login page but after the username and password is submitted it is not redirecting properly.
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
annotations:
kubernetes.io/ingress.class: nginx
nginx.ingress.kubernetes.io/affinity: cookie
nginx.ingress.kubernetes.io/backend-protocol: HTTPS
nginx.ingress.kubernetes.io/configuration-snippet: |
proxy_set_header 'X-ProxyScheme' 'https';
proxy_set_header 'X-ProxyPort' '443';
proxy_set_header X-ProxyHost https://nifi.xxxxx.com;
nginx.ingress.kubernetes.io/proxy-buffer-size: 8k
nginx.ingress.kubernetes.io/proxy-redirect-from: https://localhost:8443
nginx.ingress.kubernetes.io/upstream-vhost: nifi.default.svc
Hi, i have successfully installed and configured nifi secured cluster on Kubernetes and using oidc authentication. am using Ingress to access the nifi and when i try to acess nifi am getting the keycloak login page but after the username and password is submitted it is not redirecting properly. apiVersion: extensions/v1beta1 kind: Ingress metadata: annotations: kubernetes.io/ingress.class: nginx nginx.ingress.kubernetes.io/affinity: cookie nginx.ingress.kubernetes.io/backend-protocol: HTTPS nginx.ingress.kubernetes.io/configuration-snippet: | proxy_set_header 'X-ProxyScheme' 'https'; proxy_set_header 'X-ProxyPort' '443'; proxy_set_header X-ProxyHost https://nifi.xxxxx.com; nginx.ingress.kubernetes.io/proxy-buffer-size: 8k nginx.ingress.kubernetes.io/proxy-redirect-from: https://localhost:8443 nginx.ingress.kubernetes.io/upstream-vhost: nifi.default.svc