Asking for help? Comment out what you need so we can get more information to help you!
Cluster information:
Kubernetes version: Kubernetes 1.28.2-do.0
Cloud being used: Digital Ocean
Installation method: kubectl
Host OS: I don’t know
CNI and version: I don’t know
CRI and version: I don’t know
I was trying to add an Ingress controler to my K8s cluster by following this guide setup nginx
I did everything until the DNS record point and it always redirects me to 404 not found. I check everything I could check so I really need help please.
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: yeebus-ingress
spec:
rules:
- host: auth.yeebus-test.online
http:
paths:
- path: "/"
pathType: Prefix
backend:
service:
name: auth-api-service
port:
number: 80
- host: email.yeebus-test.online
http:
paths:
- path: "/"
pathType: Prefix
backend:
service:
name: email-api-service
port:
number: 80