Files
hidden11/deploy/k8s/deployment.yaml
T
alexandrev-tibco fa04b20e30 Initial hidden11 MVP
2026-05-02 20:50:36 +02:00

44 lines
1.0 KiB
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: hidden11
namespace: hidden11
labels:
app.kubernetes.io/name: hidden11
spec:
replicas: 1
selector:
matchLabels:
app.kubernetes.io/name: hidden11
template:
metadata:
labels:
app.kubernetes.io/name: hidden11
spec:
containers:
- name: hidden11
image: gitea.alexandre-vazquez.cloud/alexandrev/hidden11:latest
imagePullPolicy: IfNotPresent
ports:
- name: http
containerPort: 3000
readinessProbe:
httpGet:
path: /
port: http
initialDelaySeconds: 5
periodSeconds: 10
livenessProbe:
httpGet:
path: /
port: http
initialDelaySeconds: 15
periodSeconds: 20
resources:
requests:
cpu: 50m
memory: 128Mi
limits:
cpu: 250m
memory: 256Mi