diff --git a/docker-compose.prod.yml b/docker-compose.prod.yml index 8768bf8..b386c63 100644 --- a/docker-compose.prod.yml +++ b/docker-compose.prod.yml @@ -42,7 +42,7 @@ services: - OTEL_SERVICE_NAME=abada-engine-prod - OTEL_RESOURCE_ATTRIBUTES=project=abada,service.version=0.8.3-alpha deploy: - replicas: ${ABADA_ENGINE_REPLICAS:-3} + replicas: ${ABADA_ENGINE_REPLICAS:-1} resources: limits: cpus: '1.0' diff --git a/release/quickstart.sh b/release/quickstart.sh index 7be1a02..2c7cc58 100755 --- a/release/quickstart.sh +++ b/release/quickstart.sh @@ -49,20 +49,16 @@ check_prerequisites() { } download_compose() { - if [ -f "$LocalFile" ]; then - print_step "Using existing $LocalFile" + print_step "Downloading latest configuration..." + if command -v curl &> /dev/null; then + curl -sSL "$RELEASE_URL" -o "$LocalFile" + elif command -v wget &> /dev/null; then + wget -q "$RELEASE_URL" -O "$LocalFile" else - print_step "Downloading configuration..." - if command -v curl &> /dev/null; then - curl -sSL "$RELEASE_URL" -o "$LocalFile" - elif command -v wget &> /dev/null; then - wget -q "$RELEASE_URL" -O "$LocalFile" - else - echo -e "${RED}Error: curl or wget is required to download the configuration.${NC}" - exit 1 - fi - echo "✓ Configuration downloaded" + echo -e "${RED}Error: curl or wget is required to download the configuration.${NC}" + exit 1 fi + echo "✓ Configuration downloaded" } start_platform() {