[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
+27
View File
@@ -0,0 +1,27 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: backstage-backend
labes:
app: backstage
component: backend
spec:
replicas: 1
selector:
matchLabels:
app: backstage
component: backend
template:
metadata:
labels:
app: backstage
component: backend
spec:
containers:
- name: app
image: spotify/backstage-backend:latest
imagePullPolicy: Always
ports:
- containerPort: 7000
name: backend
protocol: TCP