Files
backstage/install/kubernetes/backend.yaml
T
2020-07-16 16:30:20 -07:00

28 lines
539 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: backstage-backend
labels:
app: backstage
component: backend
spec:
replicas: 1
selector:
matchLabels:
app: backstage
component: backend
template:
metadata:
labels:
app: backstage
component: backend
spec:
containers:
- name: backend
image: spotify/backstage-backend:latest
imagePullPolicy: IfNotPresent
ports:
- containerPort: 7000
name: backend
protocol: TCP