Files
lingonpaj-site/k8s/deploy.yaml
T
renovate c13e4ec0ce
lingonpaj-site / build (push) Failing after 1m38s
lingonpaj-site / deploy-prod (push) Has been skipped
chore(deps): update oci.unbound.se/unboundsoftware/lingonpaj-site docker digest to 4af6494 (#51)
2026-01-09 09:20:33 +00:00

74 lines
1.7 KiB
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: lingonpaj-site
labels:
app.kubernetes.io/name: lingonpaj-site
annotations:
kubernetes.io/change-cause: "${TIMESTAMP} Deployed commit id: ${COMMIT}"
spec:
replicas: 2
strategy:
type: RollingUpdate
rollingUpdate:
maxSurge: 1
maxUnavailable: 1
minReadySeconds: 30
selector:
matchLabels:
app.kubernetes.io/name: lingonpaj-site
template:
metadata:
labels:
app.kubernetes.io/name: lingonpaj-site
spec:
affinity:
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- weight: 100
podAffinityTerm:
labelSelector:
matchExpressions:
- key: "app.kubernetes.io/name"
operator: In
values:
- lingonpaj-site
topologyKey: kubernetes.io/hostname
containers:
- name: lingonpaj-site
readinessProbe:
httpGet:
path: /health
port: 80
initialDelaySeconds: 5
periodSeconds: 5
timeoutSeconds: 5
imagePullPolicy: Always
image: oci.unbound.se/unboundsoftware/lingonpaj-site@sha256:4af64942ba74210a4db65c7b8ab3fbf138eeef87c30084de855a524052f16a7e:${COMMIT}
ports:
- containerPort: 80
resources:
requests:
cpu: 5m
memory: 5Mi
limits:
cpu: 300m
memory: 300Mi
---
apiVersion: v1
kind: Service
metadata:
name: lingonpaj-site
labels:
app.kubernetes.io/name: lingonpaj-site
spec:
type: NodePort
selector:
app.kubernetes.io/name: lingonpaj-site
ports:
- port: 80
targetPort: 80