Split deployment in 2 files

This commit is contained in:
Ruben Hensen
2026-02-02 21:52:39 +01:00
parent 270055e741
commit 03e357d17c
2 changed files with 2 additions and 18 deletions
+2 -2
View File
@@ -16,14 +16,14 @@ spec:
pathType: ImplementationSpecific pathType: ImplementationSpecific
backend: backend:
service: service:
name: lingo name: lingo-api
port: port:
number: 8000 number: 8000
- path: / - path: /
pathType: Prefix pathType: Prefix
backend: backend:
service: service:
name: lingo name: lingo-frontend
port: port:
number: 8001 number: 8001
tls: tls:
-16
View File
@@ -1,16 +0,0 @@
apiVersion: v1
kind: Service
metadata:
labels:
app: lingo
name: lingo
spec:
ports:
- name: "api"
port: 8000
targetPort: 8000
- name: "frontend"
port: 8001
targetPort: 8001
selector:
app: lingo