32 lines
596 B
YAML
32 lines
596 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: 1Gi
|
|
cpu: 250m
|
|
requests:
|
|
memory: 256Mi
|
|
cpu: 100m |