ingress always showing default backend - 404

311 Views Asked by At

I am trying to install the Cyclos Mobile app on GCP using the demo given on youtube on this URL: https://www.youtube.com/watch?v=LmfdhOXK_ik

Everything setup perfectly as per this video but when I am trying to access the setup on browser it always showing default backend - 404. I have tried everything as per stack overflow several previous questions but still same error.

Any I idea to fix this ?

apiVersion: extensions/v1beta1
kind: Ingress
metadata:
  annotations:
    cert-manager.io/cluster-issuer: letsencypt-staging
    kubectl.kubernetes.io/last-applied-configuration: |
      {"apiVersion":"networking.k8s.io/v1beta1","kind":"Ingress","metadata":{"annotations":{"cert-manager.io/cluster-issuer":"letsencypt-staging","kubernetes.io/ingress.class":"nginx","nginx.ingress.kubernetes.io/proxy-connect-timeout":"3600"},"name":"cyclos-ingress-nginx-https","namespace":"cyclos-name-space"},"spec":{"backend":{"serviceName":"default-http-backend","servicePort":80},"rules":[{"host":"ip-address.xip.io","http":{"paths":[{"backend":{"serviceName":"cyclos-app-stateful","servicePort":80},"path":"/*"}]}}],"tls":[{"hosts":["ip-address.xip.io"],"secretName":"ip-address.xip.io-tls-secret"}]}}
    kubernetes.io/ingress.class: nginx
  creationTimestamp: "2020-09-29T07:00:01Z"
  generation: 11
  name: cyclos-ingress-nginx-https
  namespace: cyclos-name-space
  resourceVersion: "643221534"
  selfLink: /apis/extensions/v1beta1/namespaces/cyclos-name-space/ingresses/cyclos-ingress-nginx-https
  uid: uid
spec:
  backend:
    serviceName: default-http-backend
    servicePort: 80
  rules:
  - host: ip-address.xip.io
    http:
      paths:
      - backend:
          serviceName: cyclos-app-stateful
          servicePort: 80
        path: /*
  tls:
  - hosts:
    - ip-address.xip.io
    secretName: ip-address.xip.io-tls-secret
status:
  loadBalancer:
    ingress:
    - ip: IP
0

There are 0 best solutions below