22 lines
374 B
YAML
22 lines
374 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: web-app-deployment
|
|
namespace: my-namespace
|
|
spec:
|
|
replicas: 3
|
|
selector:
|
|
matchLabels:
|
|
app: web-app
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: web-app
|
|
spec:
|
|
containers:
|
|
- name: web-app-container
|
|
image: elineen/todo-app:latest
|
|
ports:
|
|
- containerPort: 8080
|
|
|