24 lines
398 B
YAML
24 lines
398 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: node-app-deployment
|
|
labels:
|
|
app: node-app
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: node-app
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: node-app
|
|
spec:
|
|
containers:
|
|
- name: node-app-container
|
|
image: oliversid/node-app
|
|
ports:
|
|
- containerPort: 5001
|
|
|
|
|