30 lines
638 B
YAML
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
|