21 lines
357 B
YAML
21 lines
357 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: client-deployment
|
|
spec:
|
|
replicas: 3
|
|
selector:
|
|
matchLabels:
|
|
component: web
|
|
template:
|
|
metadata:
|
|
labels:
|
|
component: web
|
|
spec:
|
|
containers:
|
|
- name: client
|
|
image: stephengrider/multi-client
|
|
ports:
|
|
- containerPort: 3000
|
|
|