Hello,
I installed kong in AKS private mode:
Modified the service in all-in-one-dbless.yaml to match:
service.beta.kubernetes.io/azure-load-balancer-internal: “true”
and with loadBalancerIP:xxxx in the spec.
1/ kubectl apply -f all-in-one-dbless.yaml
2/ Try to expose kong-proxy via SSL:
apiVersion: networking.k8s.io/v1beta1
kind: Ingress
metadata:
annotations:
cert-manager.io/cluster-issuer: letsencrypt-prod
kubernetes.io/ingress.class: kong
name: kong-ingress
namespace: kong
spec:
rules:
- host: api.domain.com
http:
paths:
- backend:
serviceName: kong-proxy
servicePort: 80
path: /
tls:
- hosts:
- api.domain.com
secretName: kong-ingress-tls-secret
I am getting the following error in my browser:
Request header or cookie too large
Locally it works as expected:
curl http://localhost:8000 {"message":"no Route matched with those values"}
Thank you,
merou