The great reset, we moved infra into two clusters (sekibanki et seija)

This commit is contained in:
2025-07-16 10:39:09 -04:00
parent 68f1108c2d
commit 1df5459f70
145 changed files with 2431 additions and 576 deletions

View File

@@ -0,0 +1,38 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: opengist
labels:
app.kubernetes.io/name: opengist
spec:
replicas: 1
selector:
matchLabels:
app.kubernetes.io/name: opengist
template:
metadata:
labels:
app.kubernetes.io/name: opengist
spec:
volumes:
- name: opengist-data
persistentVolumeClaim:
claimName: opengist-data-pvc
containers:
- name: opengist
image: ghcr.io/thomiceli/opengist:1.10
ports:
- containerPort: 6157
volumeMounts:
- name: opengist-data
mountPath: "/opengist"
envFrom:
- secretRef:
name: opengist-secret
livenessProbe:
httpGet:
path: /healthcheck
port: 6157
initialDelaySeconds: 30
periodSeconds: 30
failureThreshold: 3