From 4f09fbeb046dc39e88face24c7a5ff49029d565e Mon Sep 17 00:00:00 2001 From: Ruben Hensen Date: Mon, 2 Feb 2026 21:53:08 +0100 Subject: [PATCH] Split deployment in 2 files --- lingo/lingo-api-service.yaml | 13 +++++++++++++ lingo/lingo-frontend-service.yaml | 13 +++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 lingo/lingo-api-service.yaml create mode 100644 lingo/lingo-frontend-service.yaml diff --git a/lingo/lingo-api-service.yaml b/lingo/lingo-api-service.yaml new file mode 100644 index 0000000..b2ee4ef --- /dev/null +++ b/lingo/lingo-api-service.yaml @@ -0,0 +1,13 @@ +apiVersion: v1 +kind: Service +metadata: + labels: + app: lingo-api + name: lingo-api +spec: + ports: + - name: "api" + port: 8000 + targetPort: 8000 + selector: + app: lingo-api diff --git a/lingo/lingo-frontend-service.yaml b/lingo/lingo-frontend-service.yaml new file mode 100644 index 0000000..3a84b17 --- /dev/null +++ b/lingo/lingo-frontend-service.yaml @@ -0,0 +1,13 @@ +apiVersion: v1 +kind: Service +metadata: + labels: + app: lingo-frontend + name: lingo-frontend +spec: + ports: + - name: "frontend" + port: 8001 + targetPort: 8001 + selector: + app: lingo-frontend