Files
hello_argocd/deploy/deployment.yaml
2026-01-10 00:57:31 +01:00

32 lines
603 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: swiggy-app
labels:
app: swiggy-app
spec:
replicas: 3
selector:
matchLabels:
app: swiggy-app
template:
metadata:
labels:
app: swiggy-app
spec:
terminationGracePeriodSeconds: 30
containers:
- name: swiggy-app
image: veeranarni/hotstar:latest
imagePullPolicy: "Always"
ports:
- containerPort: 3000
resources:
limits:
memory: 256Mi
cpu: "250m"
requests:
memory: 128Mi
cpu: "80m"