zkt26/Z2/k8s/deployment.yaml
2026-04-29 00:05:53 +02:00

21 lines
412 B
YAML

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