devroadmap-demo/deploy/deployment.yaml
automation 04461a10e5
Some checks failed
build-and-deploy / build-deploy (push) Failing after 49s
seed: devroadmap-demo — self-hosted CI loop
2026-09-14 10:08:07 +03:00

34 lines
855 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: devroadmap-demo
spec:
replicas: 1
template:
spec:
nodeSelector:
kubernetes.io/arch: arm64 # image built native arm64 on the runner
containers:
- name: web
image: harbor.devroadmap.ru/homelab/devroadmap-demo:bootstrap
ports:
- name: http
containerPort: 80
readinessProbe:
httpGet:
path: /
port: http
initialDelaySeconds: 3
periodSeconds: 10
livenessProbe:
httpGet:
path: /
port: http
initialDelaySeconds: 10
periodSeconds: 20
resources:
requests:
cpu: 10m
memory: 16Mi
limits:
memory: 64Mi