Hey All,
I recently got pgadmin somewhat working when running in k8s. I am now
facing an issue where I can login via ldap on chrome, but only in incognito
mode.
When not in incognito mode, I am seeing 'too many redirects' which seems
to be affecting login. It does work okay when using safari.
Is there any way to eliminate the 'too many redirects'? Below is my k8s
ingress for this deployment.
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: ict-pgadmin
namespace: gq2v
annotations:
kubernetes.io/ingress.class: nginx
nginx.ingress.kubernetes.io/proxy-buffer-size: "32k"
nginx.ingress.kubernetes.io/proxy-body-size: 8m
nginx.ingress.kubernetes.io/configuration-snippet: |
proxy_set_header X-Script-Name "/pgadmin";
spec:
rules:
- host: dev-central.aether.nss.vzwnet.com
http:
paths:
- path: /pgadmin
pathType: Prefix
backend:
service:
name: ict-pgadmin-svc
port:
number: 8080
Thanks,
Steve