♻️ refactor: migrate to Go Kubernetes operator

This commit is contained in:
2026-08-13 02:19:27 +07:00
parent 826464a9e5
commit 91c07eb76a
50 changed files with 532 additions and 2930 deletions
-1
View File
@@ -35,7 +35,6 @@ services:
- WEB_URL=http://localhost:3001
- API_URL=http://localhost:3000
- KUBERNETES_NAMESPACE=minikura
- ENABLE_CRD_REFLECTION=true
db:
image: postgres:17
+2 -2
View File
@@ -92,8 +92,8 @@ echo "==> Creating minikura namespace..."
kubectl create namespace minikura --dry-run=client -o yaml | kubectl apply -f - 2>/dev/null || true
echo "==> Installing CRDs..."
kubectl apply -f /workspace/operator/config/crd 2>/dev/null \
|| echo "[WARN] CRD install failed; run 'make install-crds' in operator/"
make -C /workspace/operator install-crds 2>/dev/null \
|| echo "[WARN] CRD install failed; run 'bun run operator:crds'"
# Install dependencies
echo "==> Installing dependencies..."