zkt26/z2/k8s/deployment.yaml
2026-04-20 11:55:43 +02:00

22 lines
374 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: web-deployment
namespace: my-app-ns
spec:
replicas: 2
selector:
matchLabels:
app: web
template:
metadata:
labels:
app: web
spec:
containers:
- name: web
image: my-web-app
imagePullPolicy: Never
ports:
- containerPort: 3000