Hello there,
I am new to the project, I start reading Ingress documentation, but I have only found reference with Cert Manager and Let's Encrypt.
Does Traefik support TLS with cert manager and a different issuer as Let's encrypt?
Any suggestions for examples or tutorials
Thanks
Did you check the Traefik docs?
Thank you bluepuma77, yes I did.
Context I am using EKS
I am using cert manager to get certificates via issuer from venafi. (this part is working fine, I am able to get certificates and store them as secrets.
I have installed the following traefik CRDs:
ingressroutes traefik.containo.us/v1alpha1 true IngressRoute
ingressroutetcps traefik.containo.us/v1alpha1 true IngressRouteTCP
ingressrouteudps traefik.containo.us/v1alpha1 true IngressRouteUDP
middlewares traefik.containo.us/v1alpha1 true Middleware
middlewaretcps traefik.containo.us/v1alpha1 true MiddlewareTCP
serverstransports traefik.containo.us/v1alpha1 true ServersTransport
tlsoptions traefik.containo.us/v1alpha1 true TLSOption
tlsstores traefik.containo.us/v1alpha1 true TLSStore
I am defining my ingress as follows:
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: argocdtest
namespace: argocd
spec:
rules:
- host: argocd.dev.xxx.com
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: argocd-server
port:
number: 443
tls:
- hosts:
- argocd.dev.xxx.com
secretName: argocd-dev-xxx-com
The ingress is created, however when testing it. I am receiving 404
Am I missing something (an annotation)?