Initial commit: k8s cluster manifests and scripts

This commit is contained in:
2026-04-01 15:34:02 +08:00
commit 2f04fa4473
49 changed files with 4109 additions and 0 deletions

12
apps/opengist/stop.sh Executable file
View File

@@ -0,0 +1,12 @@
#!/usr/bin/env bash
set -e
echo "🛑 Stopping OpenGist (PVC will be kept)..."
kubectl scale deployment opengist --replicas=0
echo "⏳ Waiting for pod termination..."
kubectl wait --for=delete pod -l app=opengist --timeout=60s || true
echo "✅ OpenGist stopped (data preserved)"