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