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

27
apps/opengist/status.sh Executable file
View File

@@ -0,0 +1,27 @@
#!/usr/bin/env bash
echo
echo "=== Pod ==="
kubectl get pod -l app=opengist -o wide
echo
echo "=== Deployment ==="
kubectl get deployment opengist
echo
echo "=== Services ==="
kubectl get svc opengist-web opengist-ssh
echo
echo "=== Ingress ==="
kubectl get ingress opengist-ingress
echo
echo "=== PVC ==="
kubectl get pvc opengist-pvc
echo
echo "=== NodePort SSH ==="
kubectl get svc opengist-ssh -o jsonpath='{.spec.ports[0].nodePort}'
echo