[deployment] Kubernetes Manifests

This commit is contained in:
David Dyball
2020-06-30 11:12:06 +01:00
parent 27266fd0ce
commit 7cef0de42d
4 changed files with 109 additions and 0 deletions
+35
View File
@@ -0,0 +1,35 @@
apiVersion: v1
kind: Service
metadata:
name: backstage
labels:
app: backstage
component: frontend
spec:
type: ClusterIP
selector:
app: backstage
component: frontend
ports:
- name: frontend
port: 80
protocol: TCP
targetPort: app
---
apiVersion: v1
kind: Service
metadata:
name: backstage-backend
labels:
app: backstage
component: backend
spec:
type: ClusterIP
selector:
app: backstage
component: backend
ports:
- name: backend
port: 7000
protocol: TCP
targetPort: backend