You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@fineract.apache.org by Enoobong Ibanga <ei...@teamapt.com> on 2020/01/16 05:36:01 UTC

Issues Running Fineract 1.x on Kubernetes with Ingress

Hi,

I’m having ERR_TOO_MANY_REDIRECTS running the Fineract project on Kubernetes with a SSL Ingress

Ingress file below

apiVersion: extensions/v1beta1
kind: Ingress
metadata:
  annotations:
    kubernetes.io/ingress.class: nginx
    cert-manager.io/cluster-issuer: letsencrypt-devenv
  name: kuwego-cba
  namespace: kuwego
spec:
  tls:
    - hosts:
        - my.domain.com
      secretName: my-service-tls
  rules:
    - host: my.domain.com
      http:
        paths:
          - backend:
              serviceName: my-service
              servicePort: 80
            path: /
I am able to access the tomcat home page on https://my.domain.com <http://my.domain.com/> but accessing the API on https://my.domain.com/fineract-provider/api/v1 <https://my.domain.com/fineract-provider/api/v1> ERR_TOO_MANY_REDIRECTS

Anyone faced this issue and how did you resolve it?

Thanks