Jafner.net/homelab/jafner-dev/web/Ingress.yaml

19 lines
433 B
YAML
Raw Normal View History

2023-03-29 16:17:56 -07:00
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: web-ingress
annotations:
kubernetes.io/ingress.class: gce
kubernetes.io/ingress.allow-http: "true"
kubernetes.io/ingress.global-static-ip-name: web-ip
cert-manager.io/issuer: letsencrypt-production
spec:
tls:
- secretName: web-ssl
hosts:
- jafner.dev
defaultBackend:
service:
name: web
port:
number: 8080