Files
app1/k8s/ingress.yaml
MTimka b5da74f12b
Some checks failed
Build and Deploy / build-and-deploy (push) Failing after 2m17s
testing workflows
2026-05-13 13:49:09 -07:00

18 lines
386 B
YAML

apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: python-app
annotations:
kubernetes.io/ingress.class: traefik
spec:
rules:
- host: python-app.talutasku.ee
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: python-app
port:
number: 80