Is there some EKS operator to configure cloudflare routing according to ingress anotations?
Is there some EKS operator to configure cloudflare routing according to ingress anotations?
2 Replies
you might want to check out cloudflared. Run it as pod (deployment) and then forward all traffic towards your k8s service or ingress. cloudflared config:
ingress:
- hostname: example.com
service: http://service-name.namespace.svc.cluster.local:<port>
more info:
https://developers.cloudflare.com/cloudflare-one/connections/connect-apps/install-and-setup/tunnel-guide/local/local-management/ingress/seems similar to what im looking for but honestly its kinda bad 😅 Maybe there is something better than that?