avisenna-landing-page/infra/kubernetes/landing-page/deployment.yaml
2025-04-12 13:22:44 +00:00

30 lines
638 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: landing-page
labels:
app: landing-page
spec:
replicas: 1
selector:
matchLabels:
app: landing-page
template:
metadata:
labels:
app: landing-page
spec:
containers:
- name: landing-page
image: ghcr.io/kebrahimpour/avisenna-landing-page:latest
ports:
- containerPort: 80
resources:
limits:
memory: "128Mi"
cpu: "250m"
requests:
memory: "64Mi"
cpu: "100m"
imagePullSecrets:
- name: ghcr-secret