Hi, I installed traefik using the official helm chart using the following commands:
helm upgrade --install traefik traefik/traefik --namespace traefik --set="additionalArguments={--entryPoints.web.address=:80,--entryPoints.web-secure.address=:443,--providers.kubernetesingress=true}
helm upgrade --install traefik traefik/traefik --namespace traefik --set="additionalArguments={--entryPoints.web.address=:80,--entryPoints.web-secure.address=:443,--providers.kubernetesingress=true}
helm upgrade --install traefik traefik/traefik --namespace traefik --set="additionalArguments={--providers.kubernetesingress,--providers.kubernetesingress.ingressclass=traefik,--log=t
rue,--log.level=DEBUG,--api,--api.dashboard=true,--api.debug=true,--api.insecure=true,--entrypoints.web.forwardedheaders.insecure=true,--providers.kubernetesingress.ingressendpoint.host
name=local.barbra.services}"
helm upgrade --install traefik traefik/traefik --namespace traefik --set="additionalArguments={--providers.kubernetesingress=true}"
....
And have the following ingress inside my cluster:
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
annotations:
ingress.kubernetes.io/enable-cors: "true"
ingress.kubernetes.io/priority: "2"
kubernetes.io/tls-acme: "true"
name: deployment-bumr-account
namespace: default
spec:
rules:
- host: accounts.local.barbra.services
http:
paths:
- backend:
serviceName: deployment-bumr-account
servicePort: http
path: /
tls:
- hosts:
- accounts.barbra.io
secretName: accounts-barbra-io-tls
status:
loadBalancer: {}
...
I had the same ingress running and working with v1 of traefik, but now I always get a 404 or an empty response. Am I missing something in the configuration? I am sitting on this for 3+ hours now and cant find anything in the documentation / online.
Please Help
Eric