Files
dancefinder-app/k8s/ingress-local.yaml
T

20 lines
411 B
YAML
Raw Normal View History

2021-09-27 21:26:07 +02:00
apiVersion: networking.k8s.io/v1
2019-01-15 13:21:24 +01:00
kind: Ingress
metadata:
name: dancefinder-app-ingress
annotations:
ingress.kubernetes.io/enable-cors: "true"
spec:
ingressClassName: "nginx"
2019-01-15 13:21:24 +01:00
rules:
- host: "local-dancefinder.unbound.se"
http:
paths:
- path: /
2021-09-27 21:26:07 +02:00
pathType: Prefix
2019-01-15 13:21:24 +01:00
backend:
2021-09-27 21:26:07 +02:00
service:
name: dancefinder-app
port:
number: 80