🏗️」 wip: should be working but pull limit is off for today

This commit is contained in:
2025-08-27 20:19:01 +02:00
parent e8d7fd7db7
commit 8b44410a94
7 changed files with 99 additions and 8 deletions

36
p2/deploy/app-ingress.yml Normal file
View File

@ -0,0 +1,36 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: app-ingress
spec:
rules:
- host: app1.com
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: app1-service
port:
number: 80
- host: app2.com
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: app2-service
port:
number: 80
- host: app3.com
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: app3-service
port:
number: 80