You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

21 lines
493 B

apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: "kubernetes-demo-app-ingress-service"
spec:
tls:
- hosts:
- reymota.ddns.net
secretName: letsencrypt-certs
rules:
- host: reymota.ddns.net # CHANGE ME!
http:
paths:
# The * is needed so that all traffic gets redirected to nginx
- path: /*
pathType: Prefix
backend:
service:
name: nginx
port:
number: 80