Commit f5e24c76 authored by George Papathanail's avatar George Papathanail
Browse files

fix: update helm-deploy.sh script add nats repo

parent e70a8164
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
@@ -50,6 +50,17 @@ TOKEN=$(kubectl -n $OOP_NS create token oop-user --duration=720h)
echo "  Token generated"
echo ""

echo "Updating Helm chart dependencies..."

helm repo add nats https://nats-io.github.io/k8s/helm/charts/ >/dev/null 2>&1 || true
helm repo update >/dev/null

helm dependency update "$CHART_DIR"

echo "  Helm dependencies updated"
echo ""


# ── Deploy with Helm ──────────────────────────────────────────────────
echo "Deploying OOP Platform via Helm..."