diff --git a/deploy_mcp.sh b/deploy_mcp.sh index 5cbd0f0..cbc956f 100755 --- a/deploy_mcp.sh +++ b/deploy_mcp.sh @@ -18,7 +18,7 @@ echo "=== 3. Push image ===" docker push "${FULL_IMAGE}" echo "=== 4. Deploy with pre-built image ===" -gcloud run deploy "${SERVICE}" --image="${FULL_IMAGE}" --region="${REGION}" --service-account="jason-vauger@${PROJECT}.iam.gserviceaccount.com" --set-secrets="MCP_SECRET=mcp-server-key:latest" --no-allow-unauthenticated --port=8080 --memory=512Mi --cpu=1 --min-instances=0 --max-instances=2 --quiet +gcloud run deploy "${SERVICE}" --image="${FULL_IMAGE}" --region="${REGION}" --service-account="jason-vauger@${PROJECT}.iam.gserviceaccount.com" --set-secrets="MCPSECRET=mcp-server-key:latest" --no-allow-unauthenticated --port=8080 --memory=512Mi --cpu=1 --min-instances=0 --max-instances=2 --quiet echo "=== 5. Verify ===" SVC_URL=$(gcloud run services describe "${SERVICE}" --region="${REGION}" --format='value(status.url)')