This commit is contained in:
Ho Ngoc Hai
2025-12-27 01:31:10 +07:00
commit 4da46b5b8e
205 changed files with 21063 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
#!/bin/bash
set -e
echo "🚀 Deploying to staging..."
if [ -z "$KUBECONFIG" ]; then
echo "❌ KUBECONFIG environment variable not set"
exit 1
fi
kubectl apply -f deployments/staging/kubernetes/
kubectl rollout status deployment/auth-service -n staging
echo "✅ Deployment completed!"