Files
Node.js-14-Cookbook/Chapter11/fastify-microservice/deployment/fastify-app.yml
T
2020-07-20 01:59:08 +01:00

23 lines
396 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: fastify-app
labels:
app: fastify
spec:
replicas: 3
selector:
matchLabels:
app: fastify
template:
metadata:
labels:
app: fastify
spec:
containers:
- name: fastify-app
image: fastify-microservice:latest
imagePullPolicy: Never
ports:
- containerPort: 3000